|
|
- %%-----------------------------------------------------------------------------
- %% @Module : evil_smashing.hrl
- %% @Author : J
- %% @Email : j-som@foxmail.com
- %% @Created : 2018-01-09
- %% @Description: 诛邪战场
- %%-----------------------------------------------------------------------------
-
- -record (smashing_state, {
- team_list = [],
- role_list = [],
- match_ref = undefined
- }).
-
- -record (smashing_match, {
- key = 0,
- type = 0,
- role_list = [],
- value = 0,
- step = 0,
- args = undefined
- }).
-
- -define (MATCH_TYPE_ROLE, 1).
- -define (MATCH_TYPE_TEAM, 2).
|