Files
ss/include/d/d_dvd_unk.h
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

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