12 lines
129 B
C++
12 lines
129 B
C++
#pragma once
|
|
#define MAX_BUFF_SIZE 0x200
|
|
|
|
enum EEntityType
|
|
{
|
|
etUnknow = 0,
|
|
|
|
etPoint = 1,
|
|
|
|
};
|
|
|