Compare commits
2 Commits
a329719bb7
...
75d1e80eb0
Author | SHA1 | Date |
---|---|---|
|
75d1e80eb0 | |
|
10c0918814 |
Binary file not shown.
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e74da6d931e989749bb8468453873471
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: a3f2557d55b3ec744945aca24e0faca2
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: af5a4a9e305774b42a9b746d570c9367
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -64,7 +64,6 @@ public enum E_ProcessType
|
||||||
SiteClearing,
|
SiteClearing,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 模式
|
/// 模式
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -90,6 +89,9 @@ public enum E_ModeType
|
||||||
Exam,
|
Exam,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 工具材料
|
||||||
|
/// </summary>
|
||||||
public enum E_ToolOrMaterial
|
public enum E_ToolOrMaterial
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -5,4 +5,7 @@ using UnityEngine;
|
||||||
public class HandsOnTrainingMgr : BaseManager<HandsOnTrainingMgr>
|
public class HandsOnTrainingMgr : BaseManager<HandsOnTrainingMgr>
|
||||||
{
|
{
|
||||||
private HandsOnTrainingMgr() { }
|
private HandsOnTrainingMgr() { }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,6 +39,10 @@ public class NetManager : BaseManager<NetManager>
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="info"></param>
|
||||||
public void SaveInfo(string info)
|
public void SaveInfo(string info)
|
||||||
{
|
{
|
||||||
string path = Application.streamingAssetsPath + "/Config/info.txt";
|
string path = Application.streamingAssetsPath + "/Config/info.txt";
|
||||||
|
|
|
@ -10,4 +10,7 @@ public class ReportManager : BaseManager<ReportManager>
|
||||||
/// 当前的系统/方案的报告
|
/// 当前的系统/方案的报告
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public R_Scheme creport;
|
public R_Scheme creport;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,4 +12,7 @@ public enum Enum_EventType
|
||||||
/// 更新加载页进度条
|
/// 更新加载页进度条
|
||||||
/// </summary>
|
/// </summary>
|
||||||
UpdateProgress,
|
UpdateProgress,
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue