wip card clicking

This commit is contained in:
Asuro
2025-03-29 22:27:34 +01:00
parent cd03f89465
commit 3ce1acc633
12 changed files with 127 additions and 22 deletions

View File

@@ -28,12 +28,14 @@ namespace Game
struct PlayerData
{
Transform PlayerCamTransform;
Transform FreeflyCamTransform;
Mat4 Projection;
Mat4 ProjectionInverse;
float FreeflyXRot = 0.0f;
float FreeflyYRot = 0.0f;
float WalkXRot = 0.0f;
float WalkYRot = 0.0f;
Transform PlayerCamTransform;
CameraMode CameraM = CameraMode::Freefly;
InputMode InputM = InputMode::Game;
float MouseSensitivity = 1.0f;