diff options
Diffstat (limited to 'scripts/Entities/Actors/PlayerDefinition.cs')
| -rw-r--r-- | scripts/Entities/Actors/PlayerDefinition.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/Entities/Actors/PlayerDefinition.cs b/scripts/Entities/Actors/PlayerDefinition.cs new file mode 100644 index 0000000..58ae6b4 --- /dev/null +++ b/scripts/Entities/Actors/PlayerDefinition.cs @@ -0,0 +1,11 @@ +using Godot; + +namespace TheLegendOfGustav.Entities.Actors; + +[GlobalClass] +public partial class PlayerDefinition : ActorDefinition +{ + [ExportCategory("Player Mechanics")] + [Export] + public int InventoryCapacity = 0; +}
\ No newline at end of file |
