blob: a4f8eba3ed47c0d07212be60bc84a4eced61a1e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef D_A_NPC_GRD_H
#define D_A_NPC_GRD_H
#include "d/a/npc/d_a_npc.h"
class dAcNpcGrd_c : public dAcNpc_c {
public:
dAcNpcGrd_c() {}
virtual ~dAcNpcGrd_c() {}
private:
};
#endif
|