update: deploy buttons

This commit is contained in:
KOSMOGOR
2025-04-26 21:35:36 +03:00
parent 97abae3080
commit 6338e20f01
19 changed files with 1565 additions and 1719 deletions
+10
View File
@@ -88,6 +88,16 @@ public class GameController : MonoBehaviour
}
return false;
}
public static string GetBulletTypeString(BulletType bulletType) {
return bulletType switch {
BulletType.Rifle => "Rifle",
BulletType.Minigun => "Minigun",
BulletType.Rocket => "Rocket",
BulletType.Railgun => "Railgun",
_ => "None",
};
}
}
[Serializable]