Files
ss/include/d/d_player.h
T
2024-05-24 14:37:17 +01:00

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