From 8d9eb6357bd752fd0a6070fbdda6c756b5988792 Mon Sep 17 00:00:00 2001
From: chai <215380520@qq.com>
Date: Mon, 3 Jun 2024 15:52:39 +0800
Subject: * move folder
---
Projects/Tools/UGEditor/.config/dotnet-tools.json | 36 ---------------
Projects/Tools/UGEditor/Content/Content.mgcb | 15 -------
Projects/Tools/UGEditor/Game1.cs | 52 ----------------------
Projects/Tools/UGEditor/Icon.bmp | Bin 16522 -> 0 bytes
Projects/Tools/UGEditor/Icon.ico | Bin 4286 -> 0 bytes
Projects/Tools/UGEditor/Icon.png | Bin 1946 -> 0 bytes
Projects/Tools/UGEditor/Program.cs | 3 --
Projects/Tools/UGEditor/UGEditor.csproj | 44 ------------------
Projects/Tools/UGEditor/app.manifest | 43 ------------------
Projects/Tools/UGEditor/c-sharp-80x80.ico | Bin 26622 -> 0 bytes
Projects/UGEditor/.config/dotnet-tools.json | 36 +++++++++++++++
Projects/UGEditor/Content/Content.mgcb | 15 +++++++
Projects/UGEditor/Game1.cs | 52 ++++++++++++++++++++++
Projects/UGEditor/Icon.bmp | Bin 0 -> 16522 bytes
Projects/UGEditor/Icon.ico | Bin 0 -> 4286 bytes
Projects/UGEditor/Icon.png | Bin 0 -> 1946 bytes
Projects/UGEditor/Program.cs | 3 ++
Projects/UGEditor/UGEditor.csproj | 44 ++++++++++++++++++
Projects/UGEditor/app.manifest | 43 ++++++++++++++++++
Projects/UGEditor/c-sharp-80x80.ico | Bin 0 -> 26622 bytes
Projects/ULTRAGUNFU.sln | 5 +--
21 files changed, 194 insertions(+), 197 deletions(-)
delete mode 100644 Projects/Tools/UGEditor/.config/dotnet-tools.json
delete mode 100644 Projects/Tools/UGEditor/Content/Content.mgcb
delete mode 100644 Projects/Tools/UGEditor/Game1.cs
delete mode 100644 Projects/Tools/UGEditor/Icon.bmp
delete mode 100644 Projects/Tools/UGEditor/Icon.ico
delete mode 100644 Projects/Tools/UGEditor/Icon.png
delete mode 100644 Projects/Tools/UGEditor/Program.cs
delete mode 100644 Projects/Tools/UGEditor/UGEditor.csproj
delete mode 100644 Projects/Tools/UGEditor/app.manifest
delete mode 100644 Projects/Tools/UGEditor/c-sharp-80x80.ico
create mode 100644 Projects/UGEditor/.config/dotnet-tools.json
create mode 100644 Projects/UGEditor/Content/Content.mgcb
create mode 100644 Projects/UGEditor/Game1.cs
create mode 100644 Projects/UGEditor/Icon.bmp
create mode 100644 Projects/UGEditor/Icon.ico
create mode 100644 Projects/UGEditor/Icon.png
create mode 100644 Projects/UGEditor/Program.cs
create mode 100644 Projects/UGEditor/UGEditor.csproj
create mode 100644 Projects/UGEditor/app.manifest
create mode 100644 Projects/UGEditor/c-sharp-80x80.ico
(limited to 'Projects')
diff --git a/Projects/Tools/UGEditor/.config/dotnet-tools.json b/Projects/Tools/UGEditor/.config/dotnet-tools.json
deleted file mode 100644
index efabe22..0000000
--- a/Projects/Tools/UGEditor/.config/dotnet-tools.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "version": 1,
- "isRoot": true,
- "tools": {
- "dotnet-mgcb": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb"
- ]
- },
- "dotnet-mgcb-editor": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor"
- ]
- },
- "dotnet-mgcb-editor-linux": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-linux"
- ]
- },
- "dotnet-mgcb-editor-windows": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-windows"
- ]
- },
- "dotnet-mgcb-editor-mac": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-mac"
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/Projects/Tools/UGEditor/Content/Content.mgcb b/Projects/Tools/UGEditor/Content/Content.mgcb
deleted file mode 100644
index ddc4c36..0000000
--- a/Projects/Tools/UGEditor/Content/Content.mgcb
+++ /dev/null
@@ -1,15 +0,0 @@
-
-#----------------------------- Global Properties ----------------------------#
-
-/outputDir:bin/$(Platform)
-/intermediateDir:obj/$(Platform)
-/platform:DesktopGL
-/config:
-/profile:Reach
-/compress:False
-
-#-------------------------------- References --------------------------------#
-
-
-#---------------------------------- Content ---------------------------------#
-
diff --git a/Projects/Tools/UGEditor/Game1.cs b/Projects/Tools/UGEditor/Game1.cs
deleted file mode 100644
index 2c87347..0000000
--- a/Projects/Tools/UGEditor/Game1.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-using Microsoft.Xna.Framework;
-using Microsoft.Xna.Framework.Graphics;
-using Microsoft.Xna.Framework.Input;
-
-namespace UGEditor
-{
- public class Game1 : Game
- {
- private GraphicsDeviceManager _graphics;
- private SpriteBatch _spriteBatch;
-
- public Game1()
- {
- _graphics = new GraphicsDeviceManager(this);
- Content.RootDirectory = "Content";
- IsMouseVisible = true;
- }
-
- protected override void Initialize()
- {
- // TODO: Add your initialization logic here
-
- base.Initialize();
- }
-
- protected override void LoadContent()
- {
- _spriteBatch = new SpriteBatch(GraphicsDevice);
-
- // TODO: use this.Content to load your game content here
- }
-
- protected override void Update(GameTime gameTime)
- {
- if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed || Keyboard.GetState().IsKeyDown(Keys.Escape))
- Exit();
-
- // TODO: Add your update logic here
-
- base.Update(gameTime);
- }
-
- protected override void Draw(GameTime gameTime)
- {
- GraphicsDevice.Clear(Color.CornflowerBlue);
-
- // TODO: Add your drawing code here
-
- base.Draw(gameTime);
- }
- }
-}
diff --git a/Projects/Tools/UGEditor/Icon.bmp b/Projects/Tools/UGEditor/Icon.bmp
deleted file mode 100644
index e5eaed9..0000000
Binary files a/Projects/Tools/UGEditor/Icon.bmp and /dev/null differ
diff --git a/Projects/Tools/UGEditor/Icon.ico b/Projects/Tools/UGEditor/Icon.ico
deleted file mode 100644
index 16f2525..0000000
Binary files a/Projects/Tools/UGEditor/Icon.ico and /dev/null differ
diff --git a/Projects/Tools/UGEditor/Icon.png b/Projects/Tools/UGEditor/Icon.png
deleted file mode 100644
index f036ee9..0000000
Binary files a/Projects/Tools/UGEditor/Icon.png and /dev/null differ
diff --git a/Projects/Tools/UGEditor/Program.cs b/Projects/Tools/UGEditor/Program.cs
deleted file mode 100644
index 17a046b..0000000
--- a/Projects/Tools/UGEditor/Program.cs
+++ /dev/null
@@ -1,3 +0,0 @@
-
-using var game = new UGEditor.Game1();
-game.Run();
diff --git a/Projects/Tools/UGEditor/UGEditor.csproj b/Projects/Tools/UGEditor/UGEditor.csproj
deleted file mode 100644
index debddf1..0000000
--- a/Projects/Tools/UGEditor/UGEditor.csproj
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
- WinExe
- net6.0
- Major
- false
- false
-
-
- Icon.ico
- app.manifest
- Icon.png
- UGEditor
-
-
-
-
-
-
-
-
-
-
- Icon.ico
-
-
- Icon.bmp
-
-
-
-
-
-
-
-
- True
- \
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Projects/Tools/UGEditor/app.manifest b/Projects/Tools/UGEditor/app.manifest
deleted file mode 100644
index 991f61c..0000000
--- a/Projects/Tools/UGEditor/app.manifest
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true/pm
- permonitorv2,permonitor
-
-
-
-
diff --git a/Projects/Tools/UGEditor/c-sharp-80x80.ico b/Projects/Tools/UGEditor/c-sharp-80x80.ico
deleted file mode 100644
index fa04363..0000000
Binary files a/Projects/Tools/UGEditor/c-sharp-80x80.ico and /dev/null differ
diff --git a/Projects/UGEditor/.config/dotnet-tools.json b/Projects/UGEditor/.config/dotnet-tools.json
new file mode 100644
index 0000000..efabe22
--- /dev/null
+++ b/Projects/UGEditor/.config/dotnet-tools.json
@@ -0,0 +1,36 @@
+{
+ "version": 1,
+ "isRoot": true,
+ "tools": {
+ "dotnet-mgcb": {
+ "version": "3.8.1.303",
+ "commands": [
+ "mgcb"
+ ]
+ },
+ "dotnet-mgcb-editor": {
+ "version": "3.8.1.303",
+ "commands": [
+ "mgcb-editor"
+ ]
+ },
+ "dotnet-mgcb-editor-linux": {
+ "version": "3.8.1.303",
+ "commands": [
+ "mgcb-editor-linux"
+ ]
+ },
+ "dotnet-mgcb-editor-windows": {
+ "version": "3.8.1.303",
+ "commands": [
+ "mgcb-editor-windows"
+ ]
+ },
+ "dotnet-mgcb-editor-mac": {
+ "version": "3.8.1.303",
+ "commands": [
+ "mgcb-editor-mac"
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/Projects/UGEditor/Content/Content.mgcb b/Projects/UGEditor/Content/Content.mgcb
new file mode 100644
index 0000000..ddc4c36
--- /dev/null
+++ b/Projects/UGEditor/Content/Content.mgcb
@@ -0,0 +1,15 @@
+
+#----------------------------- Global Properties ----------------------------#
+
+/outputDir:bin/$(Platform)
+/intermediateDir:obj/$(Platform)
+/platform:DesktopGL
+/config:
+/profile:Reach
+/compress:False
+
+#-------------------------------- References --------------------------------#
+
+
+#---------------------------------- Content ---------------------------------#
+
diff --git a/Projects/UGEditor/Game1.cs b/Projects/UGEditor/Game1.cs
new file mode 100644
index 0000000..2c87347
--- /dev/null
+++ b/Projects/UGEditor/Game1.cs
@@ -0,0 +1,52 @@
+using Microsoft.Xna.Framework;
+using Microsoft.Xna.Framework.Graphics;
+using Microsoft.Xna.Framework.Input;
+
+namespace UGEditor
+{
+ public class Game1 : Game
+ {
+ private GraphicsDeviceManager _graphics;
+ private SpriteBatch _spriteBatch;
+
+ public Game1()
+ {
+ _graphics = new GraphicsDeviceManager(this);
+ Content.RootDirectory = "Content";
+ IsMouseVisible = true;
+ }
+
+ protected override void Initialize()
+ {
+ // TODO: Add your initialization logic here
+
+ base.Initialize();
+ }
+
+ protected override void LoadContent()
+ {
+ _spriteBatch = new SpriteBatch(GraphicsDevice);
+
+ // TODO: use this.Content to load your game content here
+ }
+
+ protected override void Update(GameTime gameTime)
+ {
+ if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed || Keyboard.GetState().IsKeyDown(Keys.Escape))
+ Exit();
+
+ // TODO: Add your update logic here
+
+ base.Update(gameTime);
+ }
+
+ protected override void Draw(GameTime gameTime)
+ {
+ GraphicsDevice.Clear(Color.CornflowerBlue);
+
+ // TODO: Add your drawing code here
+
+ base.Draw(gameTime);
+ }
+ }
+}
diff --git a/Projects/UGEditor/Icon.bmp b/Projects/UGEditor/Icon.bmp
new file mode 100644
index 0000000..e5eaed9
Binary files /dev/null and b/Projects/UGEditor/Icon.bmp differ
diff --git a/Projects/UGEditor/Icon.ico b/Projects/UGEditor/Icon.ico
new file mode 100644
index 0000000..16f2525
Binary files /dev/null and b/Projects/UGEditor/Icon.ico differ
diff --git a/Projects/UGEditor/Icon.png b/Projects/UGEditor/Icon.png
new file mode 100644
index 0000000..f036ee9
Binary files /dev/null and b/Projects/UGEditor/Icon.png differ
diff --git a/Projects/UGEditor/Program.cs b/Projects/UGEditor/Program.cs
new file mode 100644
index 0000000..17a046b
--- /dev/null
+++ b/Projects/UGEditor/Program.cs
@@ -0,0 +1,3 @@
+
+using var game = new UGEditor.Game1();
+game.Run();
diff --git a/Projects/UGEditor/UGEditor.csproj b/Projects/UGEditor/UGEditor.csproj
new file mode 100644
index 0000000..debddf1
--- /dev/null
+++ b/Projects/UGEditor/UGEditor.csproj
@@ -0,0 +1,44 @@
+
+
+ WinExe
+ net6.0
+ Major
+ false
+ false
+
+
+ Icon.ico
+ app.manifest
+ Icon.png
+ UGEditor
+
+
+
+
+
+
+
+
+
+
+ Icon.ico
+
+
+ Icon.bmp
+
+
+
+
+
+
+
+
+ True
+ \
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Projects/UGEditor/app.manifest b/Projects/UGEditor/app.manifest
new file mode 100644
index 0000000..991f61c
--- /dev/null
+++ b/Projects/UGEditor/app.manifest
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true/pm
+ permonitorv2,permonitor
+
+
+
+
diff --git a/Projects/UGEditor/c-sharp-80x80.ico b/Projects/UGEditor/c-sharp-80x80.ico
new file mode 100644
index 0000000..fa04363
Binary files /dev/null and b/Projects/UGEditor/c-sharp-80x80.ico differ
diff --git a/Projects/ULTRAGUNFU.sln b/Projects/ULTRAGUNFU.sln
index bf799e7..e8c24c5 100644
--- a/Projects/ULTRAGUNFU.sln
+++ b/Projects/ULTRAGUNFU.sln
@@ -5,7 +5,7 @@ VisualStudioVersion = 17.10.34916.146
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ULTRAGUNFU", "ULTRAGUNFU\ULTRAGUNFU.csproj", "{C87D9D21-A205-4E54-B4D4-793CA6B3092F}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UGEditor", "Tools\UGEditor\UGEditor.csproj", "{EC33DBA6-E734-449E-841C-D0578FDA5F08}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UGEditor", "UGEditor\UGEditor.csproj", "{EC33DBA6-E734-449E-841C-D0578FDA5F08}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{DF3F1C06-0493-497B-9A51-FFD7DC1BF87E}"
EndProject
@@ -27,9 +27,6 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
- GlobalSection(NestedProjects) = preSolution
- {EC33DBA6-E734-449E-841C-D0578FDA5F08} = {DF3F1C06-0493-497B-9A51-FFD7DC1BF87E}
- EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {87A7D18A-A218-4959-BDAB-065DB5DA20FC}
EndGlobalSection
--
cgit v1.1-26-g67d0