21 lines
393 B
C#
21 lines
393 B
C#
![]() |
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
using Assets.Scripts.Entities.Attack;
|
|||
|
|
|||
|
namespace Assets.Scripts.Entities {
|
|||
|
|
|||
|
public class Maikäfer : MonoBehaviourEnemy {
|
|||
|
|
|||
|
public Maikäfer() : base(15)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
private void Start()
|
|||
|
{
|
|||
|
SetAttack(new MeleeAttack(this.gameObject));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|