Added custom item behaviour

This commit is contained in:
2026-04-18 14:03:28 +01:00
parent 529a83dafc
commit 88cf5b7ba9
6 changed files with 64 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
namespace Fruitomation.Game.Items
{
public abstract class CustomItemBehaviour
{
public ItemBehaviour AttachedItemBehaviour;
public abstract void OnCreation();
}
}