SupaLidlGame/State/Global/GameSettings.cs

18 lines
250 B
C#
Raw Permalink Normal View History

using Godot;
namespace SupaLidlGame.State.Global;
public enum InputMethod
{
Mouse,
Joystick,
MouseCentered,
}
2023-12-13 18:25:32 -08:00
[GlobalClass]
public partial class GameSettings : Resource
{
[Export]
public InputMethod InputMethod { get; set; }
}