Commit 05de78d0 authored by wildfirecode's avatar wildfirecode

1

parent 9ab25f20
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
- lattices 地图背景格子 - lattices 地图背景格子
- elements 元素配置 - elements 元素配置
- generateLats 能生成元素的格子 - generateLats 能生成元素的格子
- baseElements 默认填入的元素? - baseElements 默认填入的元素
- baseElementTypes 基础元素类型
## Lattice ## Lattice
# 主类 # 主类
......
/**
* 元素格子配置,需要和地图格子做区分
*/
export enum ElementConfigType {
/**
* 空元素格
*/
EMPTY=0,
/**
* 气泡
*/
BUBBLE=7,
/**
* 灰色毛球
*/
HAIRBALLGREY=8,
/**
* 褐色毛球
*/
HAIRBALLBROWN=9,
/**
* 黑色毛球
*/
HAIRBALLBLACK=10,
}
\ No newline at end of file
/** /**
* 地图格子配置 * 地图格子配置,需要和元素格子做区分
*/ */
export enum LatticeType { export enum LatticeType {
EMPTY=0, EMPTY=0,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment