Files
defrain-shooter-unity/Assets/Scripts/Weapons/Melee.cs
Noah4ever 5fd5f27ac6 Abstract Gun.cs & Weapon.cs
Gun.cs muss vlt noch umbenannt werden, weil Gun  Pistole heißt und nicht ein oberbegriff für alle Waffen ist.
2022-01-19 21:41:02 +01:00

19 lines
289 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Melee : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}