mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-01 09:18:00 +03:00
26 lines
No EOL
431 B
C++
26 lines
No EOL
431 B
C++
#pragma once
|
|
|
|
#include "framework.h"
|
|
|
|
namespace sol {
|
|
class state;
|
|
}
|
|
|
|
class GameScriptRotation {
|
|
private:
|
|
int x;
|
|
int y;
|
|
int z;
|
|
int ConvertRotation(int a);
|
|
|
|
public:
|
|
GameScriptRotation(int x, int y, int z);
|
|
static void Register(sol::state*);
|
|
|
|
int GetX() const;
|
|
void SetX(int x);
|
|
int GetY() const;
|
|
void SetY(int y);
|
|
int GetZ() const;
|
|
void SetZ(int z);
|
|
}; |