summaryrefslogtreecommitdiff
path: root/Projects/Tools/UGEditor
diff options
context:
space:
mode:
Diffstat (limited to 'Projects/Tools/UGEditor')
-rw-r--r--Projects/Tools/UGEditor/.config/dotnet-tools.json36
-rw-r--r--Projects/Tools/UGEditor/Content/Content.mgcb15
-rw-r--r--Projects/Tools/UGEditor/Game1.cs52
-rw-r--r--Projects/Tools/UGEditor/Icon.bmpbin16522 -> 0 bytes
-rw-r--r--Projects/Tools/UGEditor/Icon.icobin4286 -> 0 bytes
-rw-r--r--Projects/Tools/UGEditor/Icon.pngbin1946 -> 0 bytes
-rw-r--r--Projects/Tools/UGEditor/Program.cs3
-rw-r--r--Projects/Tools/UGEditor/UGEditor.csproj44
-rw-r--r--Projects/Tools/UGEditor/app.manifest43
-rw-r--r--Projects/Tools/UGEditor/c-sharp-80x80.icobin26622 -> 0 bytes
10 files changed, 0 insertions, 193 deletions
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
--- a/Projects/Tools/UGEditor/Icon.bmp
+++ /dev/null
Binary files differ
diff --git a/Projects/Tools/UGEditor/Icon.ico b/Projects/Tools/UGEditor/Icon.ico
deleted file mode 100644
index 16f2525..0000000
--- a/Projects/Tools/UGEditor/Icon.ico
+++ /dev/null
Binary files differ
diff --git a/Projects/Tools/UGEditor/Icon.png b/Projects/Tools/UGEditor/Icon.png
deleted file mode 100644
index f036ee9..0000000
--- a/Projects/Tools/UGEditor/Icon.png
+++ /dev/null
Binary files 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 @@
-<Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
- <RollForward>Major</RollForward>
- <PublishReadyToRun>false</PublishReadyToRun>
- <TieredCompilation>false</TieredCompilation>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationIcon>Icon.ico</ApplicationIcon>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- <PackageIcon>Icon.png</PackageIcon>
- <AssemblyName>UGEditor</AssemblyName>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="Icon.ico" />
- <None Remove="Icon.bmp" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="Icon.ico" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Icon.ico">
- <LogicalName>Icon.ico</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="Icon.bmp">
- <LogicalName>Icon.bmp</LogicalName>
- </EmbeddedResource>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
- </ItemGroup>
- <ItemGroup>
- <None Update="icon.png">
- <Pack>True</Pack>
- <PackagePath>\</PackagePath>
- </None>
- </ItemGroup>
- <Target Name="RestoreDotnetTools" BeforeTargets="Restore">
- <Message Text="Restoring dotnet tools" Importance="High" />
- <Exec Command="dotnet tool restore" />
- </Target>
-</Project> \ 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 @@
-<?xml version="1.0" encoding="utf-8"?>
-<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
- <assemblyIdentity version="1.0.0.0" name="UGEditor"/>
- <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
- <security>
- <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
- <requestedExecutionLevel level="asInvoker" uiAccess="false" />
- </requestedPrivileges>
- </security>
- </trustInfo>
-
- <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
- <application>
- <!-- A list of the Windows versions that this application has been tested on and is
- is designed to work with. Uncomment the appropriate elements and Windows will
- automatically selected the most compatible environment. -->
-
- <!-- Windows Vista -->
- <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />
-
- <!-- Windows 7 -->
- <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
-
- <!-- Windows 8 -->
- <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
-
- <!-- Windows 8.1 -->
- <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />
-
- <!-- Windows 10 -->
- <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
-
- </application>
- </compatibility>
-
- <application xmlns="urn:schemas-microsoft-com:asm.v3">
- <windowsSettings>
- <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/pm</dpiAware>
- <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">permonitorv2,permonitor</dpiAwareness>
- </windowsSettings>
- </application>
-
-</assembly>
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
--- a/Projects/Tools/UGEditor/c-sharp-80x80.ico
+++ /dev/null
Binary files differ