mirror of
https://github.com/zeldaret/botw
synced 2026-05-28 08:25:01 -04:00
15 lines
230 B
C++
15 lines
230 B
C++
#pragma once
|
|
|
|
#include "KingSystem/Utils/Types.h"
|
|
|
|
namespace ksys {
|
|
|
|
// Stubbed in release builds
|
|
class StringBoard {
|
|
public:
|
|
virtual ~StringBoard() = default;
|
|
};
|
|
KSYS_CHECK_SIZE_NX150(StringBoard, 0x8);
|
|
|
|
} // namespace ksys
|