mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-01 01:08:01 +03:00
25 lines
No EOL
374 B
C++
25 lines
No EOL
374 B
C++
#pragma once
|
|
|
|
#include "framework.h"
|
|
|
|
namespace sol {
|
|
class state;
|
|
}
|
|
|
|
class GameScriptPosition {
|
|
private:
|
|
int x;
|
|
int y;
|
|
int z;
|
|
|
|
public:
|
|
GameScriptPosition(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);
|
|
}; |