mirror of https://github.com/AxioDL/metaforce.git
15 lines
286 B
C++
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;
|
||
|
}
|
||
|
|
||
|
}
|