mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
Basic Setup
This commit is contained in:
@@ -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"}}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
FileVersion = 1
|
||||||
|
|
||||||
|
[Project]
|
||||||
|
Name = "GlitchyEngine"
|
||||||
|
TargetType = "BeefLib"
|
||||||
|
StartupObject = "GlitchyEngine.Program"
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
|
||||||
|
namespace GlitchyEngine
|
||||||
|
{
|
||||||
|
public static class Test
|
||||||
|
{
|
||||||
|
public static void Print()
|
||||||
|
{
|
||||||
|
Console.WriteLine("Hello from the Glitchy Engine!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
FileVersion = 1
|
||||||
|
Dependencies = {corlib = "*", GlitchyEngine = "*"}
|
||||||
|
|
||||||
|
[Project]
|
||||||
|
Name = "Sandbox"
|
||||||
|
TargetType = "BeefGUIApplication"
|
||||||
|
StartupObject = "Sandbox.Program"
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Sandbox
|
||||||
|
{
|
||||||
|
class Program
|
||||||
|
{
|
||||||
|
public static int Main(String[] args)
|
||||||
|
{
|
||||||
|
GlitchyEngine.Test.Print();
|
||||||
|
|
||||||
|
Console.Read();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user