Roses/Assets/Scripts/View/UnfocusableEventSystem.cs
2024-04-12 20:18:06 +02:00

8 lines
No EOL
219 B
C#

using UnityEngine.EventSystems;
namespace View {
public class UnfocusableEventSystem : EventSystem {
//Dummy method to prevent calling base method
protected override void OnApplicationFocus(bool hasFocus) { }
}
}