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