add: minigun

bug: minigun's mesh
This commit is contained in:
KOSMOGOR
2025-04-27 17:35:06 +03:00
parent 15ea51e465
commit f754b692e2
12 changed files with 541 additions and 1 deletions
+1
View File
@@ -3,6 +3,7 @@ using UnityEngine;
public abstract class Weapon : MonoBehaviour
{
public bool isActive { get; private set; } = false;
public BulletType bulletType = BulletType.None;
public abstract void Shoot(bool keyDown, bool keyHold);