add unlock system for tools

This commit is contained in:
2026-06-29 22:15:59 -05:00
parent 9dfcee6159
commit fc0bcf0201
12 changed files with 513 additions and 65 deletions
+14
View File
@@ -0,0 +1,14 @@
using UnityEngine;
public class NoTool : Tool
{
public override void Use()
{
// Do nothin'
}
public override void UseAlt()
{
// Do nothin'
}
}