commit 60c55d1180054058fd44332af618163b34ed1245 Author: JFronny <33260128+JFronny@users.noreply.github.com> Date: Fri Jun 12 20:02:04 2020 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/Lemonade.sln b/Lemonade.sln new file mode 100644 index 0000000..e483a6e --- /dev/null +++ b/Lemonade.sln @@ -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 diff --git a/Lemonade/AnimationScreen.cs b/Lemonade/AnimationScreen.cs new file mode 100644 index 0000000..7e20880 --- /dev/null +++ b/Lemonade/AnimationScreen.cs @@ -0,0 +1,7 @@ +namespace Lemonade +{ + public class AnimationScreen + { + + } +} \ No newline at end of file diff --git a/Lemonade/Fakku.cs b/Lemonade/Fakku.cs new file mode 100644 index 0000000..9b781fd --- /dev/null +++ b/Lemonade/Fakku.cs @@ -0,0 +1,4 @@ +$HEADER$namespace $NAMESPACE$ +{ + public class $CLASS$ {$END$} +} \ No newline at end of file diff --git a/Lemonade/GameState.cs b/Lemonade/GameState.cs new file mode 100644 index 0000000..3b75f88 --- /dev/null +++ b/Lemonade/GameState.cs @@ -0,0 +1,7 @@ +namespace Lemonade +{ + public enum GameState + { + + } +} \ No newline at end of file diff --git a/Lemonade/Image.cs b/Lemonade/Image.cs new file mode 100644 index 0000000..defad5d --- /dev/null +++ b/Lemonade/Image.cs @@ -0,0 +1,7 @@ +namespace Lemonade +{ + public class Image + { + + } +} \ No newline at end of file diff --git a/Lemonade/Lemonade.csproj b/Lemonade/Lemonade.csproj new file mode 100644 index 0000000..2c0dacc --- /dev/null +++ b/Lemonade/Lemonade.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp3.1 + + + diff --git a/Lemonade/PlayerState.cs b/Lemonade/PlayerState.cs new file mode 100644 index 0000000..b35ede5 --- /dev/null +++ b/Lemonade/PlayerState.cs @@ -0,0 +1,4 @@ +$HEADER$namespace $NAMESPACE$ +{ + public struct $STRUCT$ {$END$} +} \ No newline at end of file diff --git a/Lemonade/Program.cs b/Lemonade/Program.cs new file mode 100644 index 0000000..d130e09 --- /dev/null +++ b/Lemonade/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace Lemonade +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/Lemonade/ResultScreen.cs b/Lemonade/ResultScreen.cs new file mode 100644 index 0000000..9b781fd --- /dev/null +++ b/Lemonade/ResultScreen.cs @@ -0,0 +1,4 @@ +$HEADER$namespace $NAMESPACE$ +{ + public class $CLASS$ {$END$} +} \ No newline at end of file diff --git a/Lemonade/ScreenManager.cs b/Lemonade/ScreenManager.cs new file mode 100644 index 0000000..ab10c8e --- /dev/null +++ b/Lemonade/ScreenManager.cs @@ -0,0 +1,7 @@ +namespace Lemonade +{ + public class ScreenManager + { + + } +} \ No newline at end of file diff --git a/Lemonade/Settings.cs b/Lemonade/Settings.cs new file mode 100644 index 0000000..9b781fd --- /dev/null +++ b/Lemonade/Settings.cs @@ -0,0 +1,4 @@ +$HEADER$namespace $NAMESPACE$ +{ + public class $CLASS$ {$END$} +} \ No newline at end of file diff --git a/Lemonade/TransactionScreen.cs b/Lemonade/TransactionScreen.cs new file mode 100644 index 0000000..7035a04 --- /dev/null +++ b/Lemonade/TransactionScreen.cs @@ -0,0 +1,7 @@ +namespace Lemonade +{ + public class TransactionScreen + { + + } +} \ No newline at end of file diff --git a/Lemonade/Weather.cs b/Lemonade/Weather.cs new file mode 100644 index 0000000..1f6690d --- /dev/null +++ b/Lemonade/Weather.cs @@ -0,0 +1,7 @@ +namespace Lemonade +{ + public class Weather + { + + } +} \ No newline at end of file