diff --git a/BeefProj.toml b/BeefProj.toml deleted file mode 100644 index 6fff957..0000000 --- a/BeefProj.toml +++ /dev/null @@ -1,5 +0,0 @@ -FileVersion = 1 - -[Project] -Name = "Scarab" -StartupObject = "Scarab.Program" diff --git a/BeefSpace.toml b/BeefSpace.toml deleted file mode 100644 index 0f9dff6..0000000 --- a/BeefSpace.toml +++ /dev/null @@ -1,5 +0,0 @@ -FileVersion = 1 -Projects = {Scarab = {Path = "."}, Common = {Git = "https://code.booklordofthe.dev/Booklordofthedings/Common"}} - -[Workspace] -StartupProject = "Scarab" diff --git a/BeefSpace_Lock.toml b/BeefSpace_Lock.toml deleted file mode 100644 index 0b673b8..0000000 --- a/BeefSpace_Lock.toml +++ /dev/null @@ -1,6 +0,0 @@ -FileVersion = 1 - -[Locks.Common.Git] -URL = "https://code.booklordofthe.dev/Booklordofthedings/Common" -Tag = "" -Hash = "50abe7a88b4cbaae3273d6a2f855266c55b28ab1" diff --git a/src/Commands/ScarabCommandAttribute.bf b/src/Commands/ScarabCommandAttribute.bf deleted file mode 100644 index 43aba97..0000000 --- a/src/Commands/ScarabCommandAttribute.bf +++ /dev/null @@ -1,8 +0,0 @@ -namespace Scarab.Commands; - -using System; - -[AttributeUsage(.Function)] -struct ScarabCommandAttribute : Attribute -{ -} \ No newline at end of file diff --git a/src/Program.bf b/src/Program.bf deleted file mode 100644 index 284f816..0000000 --- a/src/Program.bf +++ /dev/null @@ -1,41 +0,0 @@ -namespace Scarab; - -using System; -using System.IO; -using System.Diagnostics; -using System.Interop; - -class Program -{ - private static bool _shouldClose = false; - - ///Close the program once the execution of the current command is finished - public static void Close() => _shouldClose = true; - - public static void Main(String[] args) - { - - - while(!_shouldClose) - { - DrawCursor(); - var input = Console.ReadLine(.. scope .()); - if(input == "exit") - Close(); - - } - - /* - - Load Configuration - - Read Input - - Process Command - */ - } - - private static void DrawCursor() - { - var dir = Directory.GetCurrentDirectory(.. scope .()); - Console.Write(scope $"{dir}>"); - } - -}