mirror of
https://github.com/encounter/tww.git
synced 2026-03-30 11:41:09 -07:00
17 lines
228 B
C++
17 lines
228 B
C++
#ifndef D_SCOPE_H
|
|
#define D_SCOPE_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class sub_scp_class;
|
|
|
|
class dDlst_2DSCP_c {
|
|
public:
|
|
void setActorP(sub_scp_class*) {}
|
|
|
|
void draw();
|
|
void outFontDraw();
|
|
};
|
|
|
|
#endif /* D_SCOPE_H */
|