Compare commits

...

2 Commits

Author SHA1 Message Date
liuyu 75d1e80eb0 Merge branch 'main' of http://172.16.1.12/liuyu/YanCheng_Metrology 2024-07-31 14:52:38 +08:00
liuyu 10c0918814 文件夹整理 2024-07-31 14:52:07 +08:00
9 changed files with 40 additions and 1 deletions

Binary file not shown.

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: e74da6d931e989749bb8468453873471
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a3f2557d55b3ec744945aca24e0faca2
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: af5a4a9e305774b42a9b746d570c9367
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -64,7 +64,6 @@ public enum E_ProcessType
SiteClearing,
}
/// <summary>
/// 模式
/// </summary>
@ -90,6 +89,9 @@ public enum E_ModeType
Exam,
}
/// <summary>
/// 工具材料
/// </summary>
public enum E_ToolOrMaterial
{
/// <summary>

View File

@ -5,4 +5,7 @@ using UnityEngine;
public class HandsOnTrainingMgr : BaseManager<HandsOnTrainingMgr>
{
private HandsOnTrainingMgr() { }
}

View File

@ -39,6 +39,10 @@ public class NetManager : BaseManager<NetManager>
}
/// <summary>
///
/// </summary>
/// <param name="info"></param>
public void SaveInfo(string info)
{
string path = Application.streamingAssetsPath + "/Config/info.txt";

View File

@ -10,4 +10,7 @@ public class ReportManager : BaseManager<ReportManager>
/// 当前的系统/方案的报告
/// </summary>
public R_Scheme creport;
}

View File

@ -12,4 +12,7 @@ public enum Enum_EventType
/// 更新加载页进度条
/// </summary>
UpdateProgress,
}