tnt graphics, bug fixes, folder organization

This commit is contained in:
2026-03-28 20:47:10 -05:00
parent 57b14d4ba9
commit 6491a3df11
45 changed files with 10533 additions and 148 deletions
+17
View File
@@ -0,0 +1,17 @@
using UnityEngine;
public class Flashlight : Tool
{
[Header("Flashlight Parameters")]
public Light lightSrc;
public override void Use()
{
lightSrc.enabled = !lightSrc.enabled;
}
public override void UseAlt()
{
}
}