13 lines
211 B
C#
13 lines
211 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Boar : Enemy
|
|
{
|
|
public override void Move()
|
|
{
|
|
base.Move();
|
|
anim.SetBool("walk", true);
|
|
}
|
|
}
|