mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-01 01:08:01 +03:00
20 lines
308 B
C
20 lines
308 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "framework.h"
|
||
|
|
||
|
class GameScriptRotation {
|
||
|
private:
|
||
|
int x;
|
||
|
int y;
|
||
|
int z;
|
||
|
|
||
|
public:
|
||
|
GameScriptRotation(int x, int y, int z);
|
||
|
|
||
|
int GetX();
|
||
|
void SetX(int x);
|
||
|
int GetY();
|
||
|
void SetY(int y);
|
||
|
int GetZ();
|
||
|
void SetZ(int z);
|
||
|
};
|