mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-02 01:37:59 +03:00
Move some files. Make copies of precompiled headers.
This commit is contained in:
parent
a0d199ae2d
commit
121468d4fc
6 changed files with 25 additions and 0 deletions
24
Scripting/include/GameScriptPosition.h
Normal file
24
Scripting/include/GameScriptPosition.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
#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*);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue