1
0
Fork 0
space-capture/scripts/Player.cs

18 lines
287 B
C#
Raw Normal View History

2024-10-06 16:13:47 +02:00
using Godot;
namespace SpaceCapture;
[GlobalClass]
public partial class Player : Resource
{
[Export]
public Color Color { get; set; } = Colors.Magenta;
[Export]
public Texture2D Icon { get; set; }
public virtual void ProcessGameTick(GameLogic game)
{
}
}