Inventory

This commit is contained in:
2025-06-08 14:47:15 -05:00
parent 0b6b33721b
commit 823aa454bd
6 changed files with 62 additions and 3 deletions

14
src/rpg/item/itemstack.h Normal file
View File

@@ -0,0 +1,14 @@
/**
* Copyright (c) 2025 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "itemtype.h"
typedef struct {
itemtype_t type;
uint8_t count;
} itemstack_t;