mirror of
https://github.com/zeldaret/ss
synced 2026-05-29 08:42:57 -04:00
13 lines
176 B
C++
13 lines
176 B
C++
#ifndef D_PLAYER_H
|
|
#define D_PLAYER_H
|
|
|
|
#include <common.h>
|
|
#include "d/a/obj/d_a_obj_base.h"
|
|
|
|
class dPlayer: public dAcObjBase_c {
|
|
public:
|
|
static dPlayer *LINK;
|
|
};
|
|
|
|
#endif
|