Basic entity scripting

This commit is contained in:
Simon Lübeß
2023-03-29 13:33:34 +02:00
parent 5e5134a607
commit e60d74fccd
23 changed files with 1193 additions and 89 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace GlitchyEngine;
public enum MouseButton : byte
{
None = 0,
LeftButton,
RightButton,
MiddleButton,
XButton1,
XButton2,
}