Move some files. Make copies of precompiled headers.

This commit is contained in:
hispidence 2022-01-20 18:23:33 +00:00
parent a0d199ae2d
commit 121468d4fc
6 changed files with 25 additions and 0 deletions

View file

@ -1,24 +0,0 @@
#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*);
};