From 572f574a9b60c9be82fc4cbfda1836dc49264ca6 Mon Sep 17 00:00:00 2001 From: Tom Spilman Date: Sat, 31 Aug 2024 11:03:54 -0500 Subject: [PATCH] Remove unused structure. --- .../Platform/Native/Platform.Interop.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/MonoGame.Framework/Platform/Native/Platform.Interop.cs b/MonoGame.Framework/Platform/Native/Platform.Interop.cs index e6e37eae4ee..8b2d208340a 100644 --- a/MonoGame.Framework/Platform/Native/Platform.Interop.cs +++ b/MonoGame.Framework/Platform/Native/Platform.Interop.cs @@ -178,18 +178,6 @@ internal struct MGP_Event public MGP_ControllerEvent Controller; } -[StructLayout(LayoutKind.Sequential)] -internal struct MGP_GamePadState -{ - public bool IsConnected; - public int PacketNumber; - public Buttons Buttons; - public Vector2 ThumbstickL; - public Vector2 ThumbstickR; - public float TriggerL; - public float TriggerR; -} - [MGHandle] internal readonly struct MGP_Platform { }