blob: 58ae6b4016c452f5e74bad0a982b1d31e72953a2 (
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;
}
|