1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-04-28 23:29:06 +02:00

updated templates

This commit is contained in:
Ell 2022-04-30 13:14:44 +02:00
parent bc0f9d5c0c
commit 4c24284a3f
4 changed files with 15 additions and 17 deletions

View file

@ -1,6 +1,7 @@
using MLEM.Startup;
namespace TemplateNamespace {
namespace TemplateNamespace;
public class GameImpl : MlemGame {
public static GameImpl Instance { get; private set; }
@ -10,4 +11,3 @@ namespace TemplateNamespace {
}
}
}

View file

@ -1,7 +1,8 @@
using Microsoft.Xna.Framework;
using MLEM.Misc;
namespace TemplateNamespace {
namespace TemplateNamespace;
public static class Program {
public static void Main() {
@ -11,4 +12,3 @@ namespace TemplateNamespace {
}
}
}

View file

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<PublishReadyToRun>false</PublishReadyToRun>
<TieredCompilation>false</TieredCompilation>
<ApplicationIcon>Icon.ico</ApplicationIcon>
@ -16,8 +16,6 @@
</ItemGroup>
<ItemGroup>
<MonoGameContentReference Include="Content\Content.mgcb" />
<Content Include="Content\*\**" />
<EmbeddedResource Include="Icon.ico" />
<EmbeddedResource Include="Icon.bmp" />
</ItemGroup>