Files
GameJam2023/Scripts/Player.cs
2023-09-04 07:20:33 -07:00

16 lines
275 B
C#

using Godot;
using Godot.Collections;
public partial class Player : Node3D
{
[Export]
public SpawnPoint SpawnPoint;
[Export]
public Array<PackedScene> PlayableCharacters;
public Character SelectedCharacter;
public bool IsSelectingCharacter = true;
}