Roses/Assets/Scripts/View/UI/UnfocusableEventSystem.cs
2024-04-15 17:53:15 +02:00

8 lines
No EOL
222 B
C#

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