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

Finish CSamusHud and subsystems

This commit is contained in:
Jack Andersen
2017-04-13 09:28:31 -10:00
parent 84578e9909
commit 0fe125d913
42 changed files with 1094 additions and 316 deletions

17
Runtime/World/CEffect.hpp Normal file
View File

@@ -0,0 +1,17 @@
#ifndef __URDE_CEFFECT_HPP__
#define __URDE_CEFFECT_HPP__
#include "CActor.hpp"
namespace urde
{
class CEffect : public CActor
{
public:
CEffect(TUniqueId uid, const CEntityInfo& info, bool active, const std::string& name, const zeus::CTransform& xf);
};
}
#endif // __URDE_CEFFECT_HPP__