You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
166 B
C

#pragma once
enum DIRECTION//方向
{
_DIR_M = 0,//中
_DIR_R,
_DIR_L,
_DIR_U,
_DIR_D,
_DIR_LT,//左上
_DIR_LB,
_DIR_RB,
_DIR_RT,
};