diff --git a/.gitignore b/.gitignore index 9491a2f..d6c2ed7 100644 --- a/.gitignore +++ b/.gitignore @@ -360,4 +360,8 @@ MigrationBackup/ .ionide/ # Fody - auto-generated XML schema -FodyWeavers.xsd \ No newline at end of file +FodyWeavers.xsd + +# FunGame Implement +FunGame.Implement/Implement/*.cs +FunGame.Implement/Implement/Implement/*.cs \ No newline at end of file diff --git a/FunGame.Desktop.sln b/FunGame.Desktop.sln index bb675cf..92bda6b 100644 --- a/FunGame.Desktop.sln +++ b/FunGame.Desktop.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.4.33103.184 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FunGame.Desktop", "FunGame.Desktop.csproj", "{22D5BDE1-69FE-460D-84C8-11B396A70635}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FunGame.Desktop", "FunGame.Desktop/FunGame.Desktop.csproj", "{22D5BDE1-69FE-460D-84C8-11B396A70635}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Controller/InventoryController.cs b/FunGame.Desktop/Controller/InventoryController.cs similarity index 100% rename from Controller/InventoryController.cs rename to FunGame.Desktop/Controller/InventoryController.cs diff --git a/Controller/LoginController.cs b/FunGame.Desktop/Controller/LoginController.cs similarity index 100% rename from Controller/LoginController.cs rename to FunGame.Desktop/Controller/LoginController.cs diff --git a/Controller/MainController.cs b/FunGame.Desktop/Controller/MainController.cs similarity index 100% rename from Controller/MainController.cs rename to FunGame.Desktop/Controller/MainController.cs diff --git a/Controller/RegisterController.cs b/FunGame.Desktop/Controller/RegisterController.cs similarity index 100% rename from Controller/RegisterController.cs rename to FunGame.Desktop/Controller/RegisterController.cs diff --git a/Controller/RoomSettingController.cs b/FunGame.Desktop/Controller/RoomSettingController.cs similarity index 100% rename from Controller/RoomSettingController.cs rename to FunGame.Desktop/Controller/RoomSettingController.cs diff --git a/Controller/RunTimeController.cs b/FunGame.Desktop/Controller/RunTimeController.cs similarity index 100% rename from Controller/RunTimeController.cs rename to FunGame.Desktop/Controller/RunTimeController.cs diff --git a/Controller/StoreController.cs b/FunGame.Desktop/Controller/StoreController.cs similarity index 100% rename from Controller/StoreController.cs rename to FunGame.Desktop/Controller/StoreController.cs diff --git a/Controller/UserCenterController.cs b/FunGame.Desktop/Controller/UserCenterController.cs similarity index 100% rename from Controller/UserCenterController.cs rename to FunGame.Desktop/Controller/UserCenterController.cs diff --git a/FunGame.Desktop.csproj b/FunGame.Desktop/FunGame.Desktop.csproj similarity index 100% rename from FunGame.Desktop.csproj rename to FunGame.Desktop/FunGame.Desktop.csproj diff --git a/Images/back.jpg b/FunGame.Desktop/Images/back.jpg similarity index 100% rename from Images/back.jpg rename to FunGame.Desktop/Images/back.jpg diff --git a/Images/exit.png b/FunGame.Desktop/Images/exit.png similarity index 100% rename from Images/exit.png rename to FunGame.Desktop/Images/exit.png diff --git a/Images/green.png b/FunGame.Desktop/Images/green.png similarity index 100% rename from Images/green.png rename to FunGame.Desktop/Images/green.png diff --git a/Images/logo.ico b/FunGame.Desktop/Images/logo.ico similarity index 100% rename from Images/logo.ico rename to FunGame.Desktop/Images/logo.ico diff --git a/Images/min.png b/FunGame.Desktop/Images/min.png similarity index 100% rename from Images/min.png rename to FunGame.Desktop/Images/min.png diff --git a/Images/red.png b/FunGame.Desktop/Images/red.png similarity index 100% rename from Images/red.png rename to FunGame.Desktop/Images/red.png diff --git a/Images/send.png b/FunGame.Desktop/Images/send.png similarity index 100% rename from Images/send.png rename to FunGame.Desktop/Images/send.png diff --git a/Images/yellow.png b/FunGame.Desktop/Images/yellow.png similarity index 100% rename from Images/yellow.png rename to FunGame.Desktop/Images/yellow.png diff --git a/Library/Base/BaseLogin.cs b/FunGame.Desktop/Library/Base/BaseLogin.cs similarity index 100% rename from Library/Base/BaseLogin.cs rename to FunGame.Desktop/Library/Base/BaseLogin.cs diff --git a/Library/Base/BaseMain.cs b/FunGame.Desktop/Library/Base/BaseMain.cs similarity index 100% rename from Library/Base/BaseMain.cs rename to FunGame.Desktop/Library/Base/BaseMain.cs diff --git a/Library/Base/BaseReg.cs b/FunGame.Desktop/Library/Base/BaseReg.cs similarity index 100% rename from Library/Base/BaseReg.cs rename to FunGame.Desktop/Library/Base/BaseReg.cs diff --git a/Library/Component/ExitButton.Designer.cs b/FunGame.Desktop/Library/Component/ExitButton.Designer.cs similarity index 100% rename from Library/Component/ExitButton.Designer.cs rename to FunGame.Desktop/Library/Component/ExitButton.Designer.cs diff --git a/Library/Component/ExitButton.cs b/FunGame.Desktop/Library/Component/ExitButton.cs similarity index 100% rename from Library/Component/ExitButton.cs rename to FunGame.Desktop/Library/Component/ExitButton.cs diff --git a/Library/Component/ExitButton.resx b/FunGame.Desktop/Library/Component/ExitButton.resx similarity index 100% rename from Library/Component/ExitButton.resx rename to FunGame.Desktop/Library/Component/ExitButton.resx diff --git a/Library/Component/GeneralForm.Designer.cs b/FunGame.Desktop/Library/Component/GeneralForm.Designer.cs similarity index 100% rename from Library/Component/GeneralForm.Designer.cs rename to FunGame.Desktop/Library/Component/GeneralForm.Designer.cs diff --git a/Library/Component/GeneralForm.cs b/FunGame.Desktop/Library/Component/GeneralForm.cs similarity index 100% rename from Library/Component/GeneralForm.cs rename to FunGame.Desktop/Library/Component/GeneralForm.cs diff --git a/Library/Component/GeneralForm.resx b/FunGame.Desktop/Library/Component/GeneralForm.resx similarity index 100% rename from Library/Component/GeneralForm.resx rename to FunGame.Desktop/Library/Component/GeneralForm.resx diff --git a/Library/Component/MinButton.Designer.cs b/FunGame.Desktop/Library/Component/MinButton.Designer.cs similarity index 100% rename from Library/Component/MinButton.Designer.cs rename to FunGame.Desktop/Library/Component/MinButton.Designer.cs diff --git a/Library/Component/MinButton.cs b/FunGame.Desktop/Library/Component/MinButton.cs similarity index 100% rename from Library/Component/MinButton.cs rename to FunGame.Desktop/Library/Component/MinButton.cs diff --git a/Library/Component/MinButton.resx b/FunGame.Desktop/Library/Component/MinButton.resx similarity index 100% rename from Library/Component/MinButton.resx rename to FunGame.Desktop/Library/Component/MinButton.resx diff --git a/Library/Component/ShowMessage.Designer.cs b/FunGame.Desktop/Library/Component/ShowMessage.Designer.cs similarity index 100% rename from Library/Component/ShowMessage.Designer.cs rename to FunGame.Desktop/Library/Component/ShowMessage.Designer.cs diff --git a/Library/Component/ShowMessage.cs b/FunGame.Desktop/Library/Component/ShowMessage.cs similarity index 100% rename from Library/Component/ShowMessage.cs rename to FunGame.Desktop/Library/Component/ShowMessage.cs diff --git a/Library/Component/ShowMessage.resx b/FunGame.Desktop/Library/Component/ShowMessage.resx similarity index 100% rename from Library/Component/ShowMessage.resx rename to FunGame.Desktop/Library/Component/ShowMessage.resx diff --git a/Library/Component/TextArea.Designer.cs b/FunGame.Desktop/Library/Component/TextArea.Designer.cs similarity index 100% rename from Library/Component/TextArea.Designer.cs rename to FunGame.Desktop/Library/Component/TextArea.Designer.cs diff --git a/Library/Component/TextArea.cs b/FunGame.Desktop/Library/Component/TextArea.cs similarity index 100% rename from Library/Component/TextArea.cs rename to FunGame.Desktop/Library/Component/TextArea.cs diff --git a/Library/Component/TextArea.resx b/FunGame.Desktop/Library/Component/TextArea.resx similarity index 100% rename from Library/Component/TextArea.resx rename to FunGame.Desktop/Library/Component/TextArea.resx diff --git a/Library/Component/TransparentRect.Designer.cs b/FunGame.Desktop/Library/Component/TransparentRect.Designer.cs similarity index 100% rename from Library/Component/TransparentRect.Designer.cs rename to FunGame.Desktop/Library/Component/TransparentRect.Designer.cs diff --git a/Library/Component/TransparentRect.cs b/FunGame.Desktop/Library/Component/TransparentRect.cs similarity index 100% rename from Library/Component/TransparentRect.cs rename to FunGame.Desktop/Library/Component/TransparentRect.cs diff --git a/Library/Config/Config.cs b/FunGame.Desktop/Library/Config/Config.cs similarity index 100% rename from Library/Config/Config.cs rename to FunGame.Desktop/Library/Config/Config.cs diff --git a/Library/Config/Constant.cs b/FunGame.Desktop/Library/Config/Constant.cs similarity index 100% rename from Library/Config/Constant.cs rename to FunGame.Desktop/Library/Config/Constant.cs diff --git a/Library/Config/RunTime.cs b/FunGame.Desktop/Library/Config/RunTime.cs similarity index 100% rename from Library/Config/RunTime.cs rename to FunGame.Desktop/Library/Config/RunTime.cs diff --git a/Library/Config/Usercfg.cs b/FunGame.Desktop/Library/Config/Usercfg.cs similarity index 100% rename from Library/Config/Usercfg.cs rename to FunGame.Desktop/Library/Config/Usercfg.cs diff --git a/Model/InventoryModel.cs b/FunGame.Desktop/Model/InventoryModel.cs similarity index 100% rename from Model/InventoryModel.cs rename to FunGame.Desktop/Model/InventoryModel.cs diff --git a/Model/LoginModel.cs b/FunGame.Desktop/Model/LoginModel.cs similarity index 100% rename from Model/LoginModel.cs rename to FunGame.Desktop/Model/LoginModel.cs diff --git a/Model/MainModel.cs b/FunGame.Desktop/Model/MainModel.cs similarity index 100% rename from Model/MainModel.cs rename to FunGame.Desktop/Model/MainModel.cs diff --git a/Model/RegisterModel.cs b/FunGame.Desktop/Model/RegisterModel.cs similarity index 100% rename from Model/RegisterModel.cs rename to FunGame.Desktop/Model/RegisterModel.cs diff --git a/Model/RoomSettingModel.cs b/FunGame.Desktop/Model/RoomSettingModel.cs similarity index 100% rename from Model/RoomSettingModel.cs rename to FunGame.Desktop/Model/RoomSettingModel.cs diff --git a/Model/RunTimeModel.cs b/FunGame.Desktop/Model/RunTimeModel.cs similarity index 100% rename from Model/RunTimeModel.cs rename to FunGame.Desktop/Model/RunTimeModel.cs diff --git a/Model/StoreModel.cs b/FunGame.Desktop/Model/StoreModel.cs similarity index 100% rename from Model/StoreModel.cs rename to FunGame.Desktop/Model/StoreModel.cs diff --git a/Model/UserCenterModel.cs b/FunGame.Desktop/Model/UserCenterModel.cs similarity index 100% rename from Model/UserCenterModel.cs rename to FunGame.Desktop/Model/UserCenterModel.cs diff --git a/Properties/Resources.Designer.cs b/FunGame.Desktop/Properties/Resources.Designer.cs similarity index 100% rename from Properties/Resources.Designer.cs rename to FunGame.Desktop/Properties/Resources.Designer.cs diff --git a/Properties/Resources.resx b/FunGame.Desktop/Properties/Resources.resx similarity index 100% rename from Properties/Resources.resx rename to FunGame.Desktop/Properties/Resources.resx diff --git a/Resources/LanaPixel.ttf b/FunGame.Desktop/Resources/LanaPixel.ttf similarity index 100% rename from Resources/LanaPixel.ttf rename to FunGame.Desktop/Resources/LanaPixel.ttf diff --git a/UI/Inventory/InventoryUI.Designer.cs b/FunGame.Desktop/UI/Inventory/InventoryUI.Designer.cs similarity index 100% rename from UI/Inventory/InventoryUI.Designer.cs rename to FunGame.Desktop/UI/Inventory/InventoryUI.Designer.cs diff --git a/UI/Inventory/InventoryUI.cs b/FunGame.Desktop/UI/Inventory/InventoryUI.cs similarity index 100% rename from UI/Inventory/InventoryUI.cs rename to FunGame.Desktop/UI/Inventory/InventoryUI.cs diff --git a/UI/Inventory/InventoryUI.resx b/FunGame.Desktop/UI/Inventory/InventoryUI.resx similarity index 100% rename from UI/Inventory/InventoryUI.resx rename to FunGame.Desktop/UI/Inventory/InventoryUI.resx diff --git a/UI/Login/Login.Designer.cs b/FunGame.Desktop/UI/Login/Login.Designer.cs similarity index 100% rename from UI/Login/Login.Designer.cs rename to FunGame.Desktop/UI/Login/Login.Designer.cs diff --git a/UI/Login/Login.cs b/FunGame.Desktop/UI/Login/Login.cs similarity index 100% rename from UI/Login/Login.cs rename to FunGame.Desktop/UI/Login/Login.cs diff --git a/UI/Login/Login.resx b/FunGame.Desktop/UI/Login/Login.resx similarity index 100% rename from UI/Login/Login.resx rename to FunGame.Desktop/UI/Login/Login.resx diff --git a/UI/Main/Main.Designer.cs b/FunGame.Desktop/UI/Main/Main.Designer.cs similarity index 100% rename from UI/Main/Main.Designer.cs rename to FunGame.Desktop/UI/Main/Main.Designer.cs diff --git a/UI/Main/Main.cs b/FunGame.Desktop/UI/Main/Main.cs similarity index 100% rename from UI/Main/Main.cs rename to FunGame.Desktop/UI/Main/Main.cs diff --git a/UI/Main/Main.resx b/FunGame.Desktop/UI/Main/Main.resx similarity index 100% rename from UI/Main/Main.resx rename to FunGame.Desktop/UI/Main/Main.resx diff --git a/UI/Register/Register.Designer.cs b/FunGame.Desktop/UI/Register/Register.Designer.cs similarity index 100% rename from UI/Register/Register.Designer.cs rename to FunGame.Desktop/UI/Register/Register.Designer.cs diff --git a/UI/Register/Register.cs b/FunGame.Desktop/UI/Register/Register.cs similarity index 100% rename from UI/Register/Register.cs rename to FunGame.Desktop/UI/Register/Register.cs diff --git a/UI/Register/Register.resx b/FunGame.Desktop/UI/Register/Register.resx similarity index 100% rename from UI/Register/Register.resx rename to FunGame.Desktop/UI/Register/Register.resx diff --git a/UI/RoomSetting/RoomSetting.Designer.cs b/FunGame.Desktop/UI/RoomSetting/RoomSetting.Designer.cs similarity index 100% rename from UI/RoomSetting/RoomSetting.Designer.cs rename to FunGame.Desktop/UI/RoomSetting/RoomSetting.Designer.cs diff --git a/UI/RoomSetting/RoomSetting.cs b/FunGame.Desktop/UI/RoomSetting/RoomSetting.cs similarity index 100% rename from UI/RoomSetting/RoomSetting.cs rename to FunGame.Desktop/UI/RoomSetting/RoomSetting.cs diff --git a/UI/RoomSetting/RoomSetting.resx b/FunGame.Desktop/UI/RoomSetting/RoomSetting.resx similarity index 100% rename from UI/RoomSetting/RoomSetting.resx rename to FunGame.Desktop/UI/RoomSetting/RoomSetting.resx diff --git a/UI/Start.cs b/FunGame.Desktop/UI/Start.cs similarity index 100% rename from UI/Start.cs rename to FunGame.Desktop/UI/Start.cs diff --git a/UI/Store/Store.Designer.cs b/FunGame.Desktop/UI/Store/Store.Designer.cs similarity index 100% rename from UI/Store/Store.Designer.cs rename to FunGame.Desktop/UI/Store/Store.Designer.cs diff --git a/UI/Store/Store.cs b/FunGame.Desktop/UI/Store/Store.cs similarity index 100% rename from UI/Store/Store.cs rename to FunGame.Desktop/UI/Store/Store.cs diff --git a/UI/Store/Store.resx b/FunGame.Desktop/UI/Store/Store.resx similarity index 100% rename from UI/Store/Store.resx rename to FunGame.Desktop/UI/Store/Store.resx diff --git a/UI/UserCenter/UserCenter.Designer.cs b/FunGame.Desktop/UI/UserCenter/UserCenter.Designer.cs similarity index 100% rename from UI/UserCenter/UserCenter.Designer.cs rename to FunGame.Desktop/UI/UserCenter/UserCenter.Designer.cs diff --git a/UI/UserCenter/UserCenter.cs b/FunGame.Desktop/UI/UserCenter/UserCenter.cs similarity index 100% rename from UI/UserCenter/UserCenter.cs rename to FunGame.Desktop/UI/UserCenter/UserCenter.cs diff --git a/UI/UserCenter/UserCenter.resx b/FunGame.Desktop/UI/UserCenter/UserCenter.resx similarity index 100% rename from UI/UserCenter/UserCenter.resx rename to FunGame.Desktop/UI/UserCenter/UserCenter.resx diff --git a/Utility/OpenForm.cs b/FunGame.Desktop/Utility/OpenForm.cs similarity index 100% rename from Utility/OpenForm.cs rename to FunGame.Desktop/Utility/OpenForm.cs diff --git a/FunGame.Implement/FunGame.Implement.csproj b/FunGame.Implement/FunGame.Implement.csproj new file mode 100644 index 0000000..5ba34b1 --- /dev/null +++ b/FunGame.Implement/FunGame.Implement.csproj @@ -0,0 +1,26 @@ + + + + net7.0 + enable + enable + Milimoe + ..\bin + Milimoe + Implement + ..\bin + 1.0 + 1.0 + Milimoe.FunGame.Core.Implement + $(MSBuildProjectName) + + + + embedded + + + + embedded + + +