1
Fork 0
slime-blood-and-pain/Assets/Scripts/Item.cs

17 lines
No EOL
407 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Item : Entity
{
protected override void Start() {
base.Start();
overlappable = true;
}
public virtual void OnPickup(Player player) {
Debug.LogWarning("OnPickup not overridden");
turnHandler.WriteToMessageBar("Picked up [NULL].");
Destroy(gameObject);
}
}