2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 04:27:42 +00:00

Initial round of particle runtime implementations

This commit is contained in:
Jack Andersen
2016-02-04 15:27:03 -10:00
parent cf2464a02b
commit 7a35dac972
46 changed files with 885 additions and 146 deletions

View File

@@ -2,7 +2,7 @@
#define __RETRO_CIOWIN_HPP__
#include <string>
#include "rstl.hpp"
#include <memory>
namespace Retro
{
@@ -31,7 +31,7 @@ public:
size_t GetNameHash() const {return m_nameHash;}
};
static bool operator==(rstl::rc_ptr<CIOWin> a, rstl::rc_ptr<CIOWin> b)
static bool operator==(std::shared_ptr<CIOWin> a, std::shared_ptr<CIOWin> b)
{
return a.get() == b.get();
}