16 lines
343 B
C#
16 lines
343 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) {
|
|
|
|
}
|
|
|
|
private void Start() {
|
|
SetAttack(new MeleeAttack(this.gameObject));
|
|
}
|
|
}
|
|
}
|