mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 23:05:20 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
27 lines
397 B
C++
27 lines
397 B
C++
#ifndef D_DVD_UNK_H
|
|
#define D_DVD_UNK_H
|
|
|
|
#include "common.h"
|
|
#include "egg/core/eggHeap.h"
|
|
|
|
namespace dDvdUnk {
|
|
|
|
class unkstruct_c {
|
|
public:
|
|
static unkstruct_c *create(EGG::Heap *heap);
|
|
void draw();
|
|
void execute();
|
|
void init();
|
|
char getUnk();
|
|
|
|
static void createFont(EGG::Heap *heap);
|
|
|
|
private:
|
|
UNKWORD field_0x0;
|
|
char field_0x4;
|
|
};
|
|
|
|
} // namespace dDvdUnk
|
|
|
|
#endif
|