Skip to content

Commit

Permalink
First working version
Browse files Browse the repository at this point in the history
  • Loading branch information
CrossyChainsaw committed Apr 13, 2022
0 parents commit a15bea9
Show file tree
Hide file tree
Showing 49 changed files with 1,710 additions and 0 deletions.
Binary file added .vs/BattleSim/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file added .vs/BattleSim/v16/.suo
Binary file not shown.
Binary file added .vs/BattleSim/v17/.futdcache.v1
Binary file not shown.
Binary file added .vs/BattleSim/v17/.suo
Binary file not shown.
25 changes: 25 additions & 0 deletions BattleSim.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31025.194
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BattleSim", "BattleSim\BattleSim.csproj", "{C9EDF5F6-D7FB-4F7B-B09A-FC98DE9688DD}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C9EDF5F6-D7FB-4F7B-B09A-FC98DE9688DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C9EDF5F6-D7FB-4F7B-B09A-FC98DE9688DD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C9EDF5F6-D7FB-4F7B-B09A-FC98DE9688DD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C9EDF5F6-D7FB-4F7B-B09A-FC98DE9688DD}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {6D565D1C-11FF-47D9-B331-5896611E1601}
EndGlobalSection
EndGlobal
24 changes: 24 additions & 0 deletions BattleSim/BattleSim.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>

<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>

</Project>
8 changes: 8 additions & 0 deletions BattleSim/BattleSim.csproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Compile Update="FRM_BattleSim.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>
528 changes: 528 additions & 0 deletions BattleSim/FRM_BattleSim.Designer.cs

Large diffs are not rendered by default.

Loading

0 comments on commit a15bea9

Please sign in to comment.