mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 21:11:21 +00:00
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;
|
|
}
|
|
|
|
}
|