2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-23 07:53:27 +00:00
metaforce/Editor/Resource.cpp
2016-02-01 18:29:58 -10:00

15 lines
286 B
C++

#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;
}
}