mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-30 16:57:57 +03:00
24 lines
350 B
C++
24 lines
350 B
C++
#pragma once
|
|
|
|
#include "framework.h"
|
|
|
|
namespace sol {
|
|
class state;
|
|
}
|
|
struct PHD_3DPOS;
|
|
|
|
class GameScriptPosition {
|
|
public:
|
|
int x;
|
|
int y;
|
|
int z;
|
|
|
|
GameScriptPosition(int x, int y, int z);
|
|
GameScriptPosition(PHD_3DPOS const& pos);
|
|
|
|
std::string ToString() const;
|
|
|
|
void StoreInPHDPos(PHD_3DPOS& pos) const;
|
|
|
|
static void Register(sol::state*);
|
|
};
|