boredom. / Assets / Scripts / Tasks / Sandwich.cs
Sandwich.cs
Raw
using UnityEngine;

[CreateAssetMenu(menuName = "Tasks/Sandwich")]
public class Sandwich : Task {
    // Start is called before the first frame update
    public override void OnTaskComplete() {

        Debug.Log("Made a sandwich");

    }
}