2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 06:27:43 +00:00

various implementation

This commit is contained in:
Jack Andersen
2015-08-18 19:48:57 -10:00
parent b9c3c8138e
commit e1d45fd01c
14 changed files with 300 additions and 10 deletions

View File

@@ -7,6 +7,7 @@
#include "CMapWorldInfo.hpp"
#include "CPlayerState.hpp"
#include "CWorldTransManager.hpp"
#include "ScriptObjectSupport.hpp"
namespace Retro
{
@@ -18,6 +19,15 @@ public:
const std::weak_ptr<CMapWorldInfo>&,
const std::weak_ptr<CPlayerState>&,
const std::weak_ptr<CWorldTransManager>&);
void GetObjectListById() const
{
}
void GetObjectById(TUniqueId uid) const
{
}
void SendScriptMsg(TUniqueId uid, TEditorId eid, EScriptObjectMessage msg, EScriptObjectState state);
};
}