2022-11-10 20:29:53 -08:00
|
|
|
using Godot;
|
|
|
|
using System;
|
|
|
|
|
2023-06-03 18:21:46 -07:00
|
|
|
namespace SupaLidlGame.Characters;
|
|
|
|
|
|
|
|
public partial class Enemy : NPC
|
2022-11-10 20:29:53 -08:00
|
|
|
{
|
2023-06-03 18:21:46 -07:00
|
|
|
public override void Die()
|
|
|
|
{
|
|
|
|
base.Die();
|
2022-11-10 20:29:53 -08:00
|
|
|
}
|
|
|
|
}
|