summaryrefslogtreecommitdiff
path: root/src/KingSystem/System/DebugFinder.h
blob: 16eb4e4c0e904cc55273421b9d748fccc0c55ae0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <heap/seadDisposer.h>
#include <prim/seadSafeString.h>

namespace ksys {

class DebugFinder {
    SEAD_SINGLETON_DISPOSER(DebugFinder)
    DebugFinder();
    virtual ~DebugFinder();

private:
    sead::FixedSafeString<0x40> unused_1;
    sead::FixedSafeString<0x100> unused_2;
    u32 unused_3 = 0;
};

}  // namespace ksys