Basic Setup

This commit is contained in:
Simon Lübeß
2020-11-01 14:14:06 +01:00
parent e19392e2cf
commit 1adb665422
5 changed files with 52 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FileVersion = 1
Projects = {Sandbox = {Path = "Sandbox"}, GlitchyEngine = {Path = "GlitchyEngine"}}
[Workspace]
StartupProject = "Sandbox"
[Configs.Test.Win32]
ConfigSelections = {corlib = {Config = "Debug"}}
[Configs.Test.Win64]
ConfigSelections = {corlib = {Config = "Debug"}}
+6
View File
@@ -0,0 +1,6 @@
FileVersion = 1
[Project]
Name = "GlitchyEngine"
TargetType = "BeefLib"
StartupObject = "GlitchyEngine.Program"
+12
View File
@@ -0,0 +1,12 @@
using System;
namespace GlitchyEngine
{
public static class Test
{
public static void Print()
{
Console.WriteLine("Hello from the Glitchy Engine!");
}
}
}
+7
View File
@@ -0,0 +1,7 @@
FileVersion = 1
Dependencies = {corlib = "*", GlitchyEngine = "*"}
[Project]
Name = "Sandbox"
TargetType = "BeefGUIApplication"
StartupObject = "Sandbox.Program"
+16
View File
@@ -0,0 +1,16 @@
using System;
namespace Sandbox
{
class Program
{
public static int Main(String[] args)
{
GlitchyEngine.Test.Print();
Console.Read();
return 0;
}
}
}