2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 23:47:42 +00:00

Add CScriptSpawnPoint

This commit is contained in:
Jack Andersen
2016-04-26 14:21:08 -10:00
parent bacc98d4a6
commit deb7246812
4 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#ifndef __CSCRIPTSPAWNPOINT_HPP__
#define __CSCRIPTSPAWNPOINT_HPP__
#include "CEntity.hpp"
#include "zeus/CTransform.hpp"
namespace urde
{
class CScriptSpawnPoint : public CEntity
{
public:
CScriptSpawnPoint(TUniqueId, const std::string& name, const CEntityInfo& info,
const zeus::CTransform& xf, const std::vector<u32>& itemCounts,
bool, bool, bool);
};
}
#endif // __CSCRIPTSPAWNPOINT_HPP__