Setup entry point + integrated moonworks stuff

This commit is contained in:
2024-07-05 14:32:58 +02:00
parent e7a4a862be
commit 8334a24fd1
116 changed files with 16988 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
using System.Numerics;
namespace Nerfed.Runtime;
public struct MouseState
{
public Vector2 position;
public ButtonState left;
public ButtonState middle;
public ButtonState right;
public ButtonState x1;
public ButtonState x2;
public int wheel;
}