Initial commit

This commit is contained in:
JFronny 2020-06-12 20:02:04 +02:00
commit 60c55d1180
14 changed files with 99 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/

16
Lemonade.sln Normal file
View File

@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lemonade", "Lemonade\Lemonade.csproj", "{0644F425-CCBE-42DD-AFB4-245EEED17068}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0644F425-CCBE-42DD-AFB4-245EEED17068}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0644F425-CCBE-42DD-AFB4-245EEED17068}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0644F425-CCBE-42DD-AFB4-245EEED17068}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0644F425-CCBE-42DD-AFB4-245EEED17068}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,7 @@
namespace Lemonade
{
public class AnimationScreen
{
}
}

4
Lemonade/Fakku.cs Normal file
View File

@ -0,0 +1,4 @@
$HEADER$namespace $NAMESPACE$
{
public class $CLASS$ {$END$}
}

7
Lemonade/GameState.cs Normal file
View File

@ -0,0 +1,7 @@
namespace Lemonade
{
public enum GameState
{
}
}

7
Lemonade/Image.cs Normal file
View File

@ -0,0 +1,7 @@
namespace Lemonade
{
public class Image
{
}
}

8
Lemonade/Lemonade.csproj Normal file
View File

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>

4
Lemonade/PlayerState.cs Normal file
View File

@ -0,0 +1,4 @@
$HEADER$namespace $NAMESPACE$
{
public struct $STRUCT$ {$END$}
}

12
Lemonade/Program.cs Normal file
View File

@ -0,0 +1,12 @@
using System;
namespace Lemonade
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}

4
Lemonade/ResultScreen.cs Normal file
View File

@ -0,0 +1,4 @@
$HEADER$namespace $NAMESPACE$
{
public class $CLASS$ {$END$}
}

View File

@ -0,0 +1,7 @@
namespace Lemonade
{
public class ScreenManager
{
}
}

4
Lemonade/Settings.cs Normal file
View File

@ -0,0 +1,4 @@
$HEADER$namespace $NAMESPACE$
{
public class $CLASS$ {$END$}
}

View File

@ -0,0 +1,7 @@
namespace Lemonade
{
public class TransactionScreen
{
}
}

7
Lemonade/Weather.cs Normal file
View File

@ -0,0 +1,7 @@
namespace Lemonade
{
public class Weather
{
}
}