13 lines
288 B
C#
13 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));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|