mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 15:01:38 -04:00
18 lines
211 B
C++
18 lines
211 B
C++
#ifndef D_D2D_H
|
|
#define D_D2D_H
|
|
|
|
#include "egg/core/eggHeap.h"
|
|
|
|
namespace d2d {
|
|
|
|
void create(EGG::Heap *);
|
|
void defaultSet();
|
|
void drawBefore();
|
|
void draw();
|
|
|
|
void setLytAllocator();
|
|
|
|
} // namespace d2d
|
|
|
|
#endif
|