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:
14
Editor/Resource.cpp
Normal file
14
Editor/Resource.cpp
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user