blob: 8e655dfdfe0318c3093e894fdcb52a04bca537ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using Godot;
namespace TheLegendOfGustav.Entities.Actors;
[GlobalClass]
public partial class PlayerDefinition : ActorDefinition
{
[ExportCategory("Player Mechanics")]
[Export]
public int InventoryCapacity = 0;
}
|