diff --git a/Assets/DLL/TEngineHotUpdate.dll b/Assets/DLL/TEngineHotUpdate.dll deleted file mode 100644 index 770c1ce1..00000000 Binary files a/Assets/DLL/TEngineHotUpdate.dll and /dev/null differ diff --git a/Assets/DLL/TEngineHotUpdate.dll.meta b/Assets/DLL/TEngineHotUpdate.dll.meta deleted file mode 100644 index e1572283..00000000 --- a/Assets/DLL/TEngineHotUpdate.dll.meta +++ /dev/null @@ -1,33 +0,0 @@ -fileFormatVersion: 2 -guid: 2984922c45abd6249bb8ec1aee5f8208 -PluginImporter: - externalObjects: {} - serializedVersion: 2 - iconMap: {} - executionOrder: {} - defineConstraints: [] - isPreloaded: 0 - isOverridable: 0 - isExplicitlyReferenced: 0 - validateReferences: 1 - platformData: - - first: - Any: - second: - enabled: 1 - settings: {} - - first: - Editor: Editor - second: - enabled: 0 - settings: - DefaultValueInitialized: true - - first: - Windows Store Apps: WindowsStoreApps - second: - enabled: 0 - settings: - CPU: AnyCPU - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scene/TEngineNetDemo.cs b/Assets/Scene/TEngineNetDemo.cs deleted file mode 100644 index 0f09818a..00000000 --- a/Assets/Scene/TEngineNetDemo.cs +++ /dev/null @@ -1,21 +0,0 @@ -using TEngineCore.Net; - -namespace TEngineCore -{ - public class TEngineNetDemo : TEngineCore.TEngine - { - protected override void RegisterAllSystem() - { - base.RegisterAllSystem(); - AddLogicSys(UISys.Instance); - AddLogicSys(DataCenterSys.Instance); - } - - protected override void StartGame() - { - UISys.Mgr.ShowWindow(); - - GameClient.Instance.Connect("127.0.0.1", 54809,true); - } - } -} diff --git a/Assets/Scene/TEngineNetDemo.cs.meta b/Assets/Scene/TEngineNetDemo.cs.meta deleted file mode 100644 index b2d10f93..00000000 --- a/Assets/Scene/TEngineNetDemo.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 091015446be02ff4eb886963dbe15d74 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/TEngine/Runtime/Net/Demo/TEngineLoginUI.cs b/Assets/TEngine/Runtime/Net/Demo/TEngineLoginUI.cs deleted file mode 100644 index 5aef5f11..00000000 --- a/Assets/TEngine/Runtime/Net/Demo/TEngineLoginUI.cs +++ /dev/null @@ -1,57 +0,0 @@ -using TEngineCore; -using TEngineCore.Net; -using TEngineProto; -using UnityEngine; -using UnityEngine.UI; - -namespace TEngineCore -{ - public class TEngineLoginUI : UIWindow - { - #region 脚本工具生成的代码 - private Image m_imgbg; - private Text m_textTittle; - private Text m_textVer; - private Image m_imgLogo; - private GameObject m_goLoading; - private GameObject m_goLoginRoot; - private InputField m_inputName; - private InputField m_inputPassword; - private Button m_btnLogin; - protected override void ScriptGenerator() - { - m_imgbg = FindChildComponent("m_imgbg"); - m_textTittle = FindChildComponent("m_textTittle"); - m_textVer = FindChildComponent("m_textVer"); - m_imgLogo = FindChildComponent("m_imgLogo"); - m_goLoading = FindChild("m_goLoading").gameObject; - m_goLoginRoot = FindChild("m_goLoginRoot").gameObject; - m_inputName = FindChildComponent("m_goLoginRoot/m_inputName"); - m_inputPassword = FindChildComponent("m_goLoginRoot/m_inputPassword"); - m_btnLogin = FindChildComponent