mirror of
https://gitlab.com/YuukiPS/GSServer-CBT.git
synced 2024-12-25 15:29:22 +03:00
25 lines
627 B
Lua
25 lines
627 B
Lua
--************************************************************************
|
|
-- 工具自动生成的类型定义代码(UTF-8 With BOM),请勿编辑!
|
|
-- File Name: ConfigScene.lua
|
|
-- Purpose: lua类型定义文件
|
|
-- Copyright (c) 2017-2100 miHoYo.com, Inc. All rights reserved.
|
|
--************************************************************************
|
|
|
|
--地图点类型
|
|
ScenePointType =
|
|
{
|
|
NORMAL = 0, -- 二级传送点
|
|
TOWER = 1, -- 一级传送点
|
|
PORTAL = 2, -- 空中传送门
|
|
Other = 3, -- 占位
|
|
}
|
|
|
|
--地图区域类型
|
|
SceneAreaType =
|
|
{
|
|
NORMAL = 0, -- 无
|
|
ALL = 1, -- 无
|
|
Other = 2, -- 占位
|
|
}
|
|
|