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