fix:1、删除sdk相关。2、添加tips界面,修复bug
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace ChillConnect.Editor
|
||||
{
|
||||
[System.Serializable]
|
||||
public class EditorLevelConfig
|
||||
{
|
||||
public int levelId;
|
||||
public string levelName;
|
||||
public int gridRows;
|
||||
public int gridCols;
|
||||
public int pointSpacing;
|
||||
public List<EditorArrowConfig> arrows;
|
||||
}
|
||||
|
||||
[System.Serializable]
|
||||
public class EditorArrowConfig
|
||||
{
|
||||
public int id;
|
||||
public int startPoint;
|
||||
public List<string> path;
|
||||
}
|
||||
|
||||
[System.Serializable]
|
||||
public class EditorAllLevelRoot
|
||||
{
|
||||
public List<EditorLevelConfig> levels;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user