1
0
Fork 0
Bildschirmflausch-LD41/Assets/Scripts/Entities/Scorpion.cs
Saibotk 83e54fb772 Entity uses Attack
Player shoots bullets
2018-04-22 23:50:39 +02:00

12 lines
288 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
using Assets.Scripts.Entities.Attack;
namespace Assets.Scripts.Entities {
class Scorpion : Enemy {
public Scorpion() : base(30) {
SetAttack(new MeleeAttack(this.gameObject));
}
}
}