summaryrefslogtreecommitdiff
path: root/scripts/resources/EntityStats.cs
blob: 4eebcafd1373aed84ea04898d716773c8a62ff64 (plain)
1
2
3
4
5
6
7
8
using Godot;
using System;
[GlobalClass]
public partial class EntityStats : Resource
{
	[Export] public float MaxHealth { get; set; } = 100.0f;
    [Export] public float MoveSpeed { get; set; } = 300.0f;
}