16 lines
275 B
C#
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;
|
|
}
|