11 lines
131 B
C++
11 lines
131 B
C++
#ifndef POINT_ENTITY_H
|
|
#define POINT_ENTITY_H
|
|
|
|
#include "baseentity.h"
|
|
class CPointEntity: public CBaseEntity
|
|
{
|
|
public:
|
|
};
|
|
|
|
#endif
|