Files
GameJamDungeon/Zennysoft.Game.Ma.Implementation/Equipment/Augment.cs
Zenny 230b47061d Add item spawn menu
Fix game over bug
Start adding more implementation for jewels
2026-02-11 15:25:20 -08:00

10 lines
122 B
C#

public class Augment
{
public JewelTags AugmentTag;
public Augment(JewelTags tag)
{
AugmentTag = tag;
}
}