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

Initial round of particle factories

This commit is contained in:
Jack Andersen
2016-02-01 18:29:58 -10:00
parent 3f21eae617
commit dd75a37b66
14 changed files with 1129 additions and 14 deletions

14
Editor/Resource.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "Resource.hpp"
namespace URDE
{
Space::Class Resource::DeduceDefaultSpaceClass(const HECL::ProjectPath& path)
{
Athena::io::FileReader r(path.getAbsolutePath(), 32*1024, false);
if (r.hasError())
return Space::Class::None;
return Space::Class::None;
}
}