mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
19 lines
283 B
C#
19 lines
283 B
C#
using MoleMole.Config;
|
|
|
|
namespace MoleMole
|
|
{
|
|
public abstract class BaseMonoRobot : BaseMonoMonster
|
|
{
|
|
public override void Awake()
|
|
{
|
|
base.Awake();
|
|
}
|
|
|
|
public override void SetDied(KillEffect killEffect)
|
|
{
|
|
SetLocomotionRandom(2);
|
|
base.SetDied(killEffect);
|
|
}
|
|
}
|
|
}
|