blob: f4238ad194978beb4ee2d0279a52523fd3b21412 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include "KingSystem/Resource/resSystem.h"
#include "KingSystem/Resource/resResourceMgrTask.h"
namespace ksys::res {
bool stubbedLogFunction() {
return true;
}
bool isHostPath(const sead::SafeString& path) {
return ResourceMgrTask::instance()->isHostPath(path);
}
bool returnFalse() {
return false;
}
bool returnFalse2(const sead::SafeString&) {
return false;
}
bool returnFalse3(const sead::SafeString&) {
return false;
}
s32 getDefaultAlignment() {
return 8;
}
} // namespace ksys::res
|