mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-30 16:57:57 +03:00
19 lines
No EOL
296 B
C++
19 lines
No EOL
296 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() const;
|
|
void SetX(int x);
|
|
int GetY() const;
|
|
void SetY(int y);
|
|
int GetZ() const;
|
|
void SetZ(int z);
|
|
}; |