1
0
Fork 0
Bildschirmflausch-LD41/Assets/Scripts/Entities/Attack/GatlingGun.cs
2018-04-23 18:38:43 +02:00

13 lines
317 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Assets.Scripts.Entities.Attack {
class GatlingGun : SingleShot {
public GatlingGun(GameObject owner) : base(owner) {
damage = 5;
cooldown = 0.1f;
speed = 20;
}
}
}