7-14-25 1:27PM
This commit is contained in:
23
Gameplay/Player.cs
Normal file
23
Gameplay/Player.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using Godot;
|
||||
using System;
|
||||
|
||||
public partial class Player : Node
|
||||
{
|
||||
public bool _available, _selected;
|
||||
public Actor _actor;
|
||||
public Battle _currentBattle;
|
||||
|
||||
public override void _Ready()
|
||||
{
|
||||
_actor = Actor.Create("actor");
|
||||
AddChild(_actor);
|
||||
}
|
||||
|
||||
public override void _Process(double DELTA_)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user