using System.Collections; using System.Collections.Generic; using UnityEngine; public class WrittenArtefactControl : ArtefactControl { protected override void Start() { base.Start(); } private void enablePower() { //enable power from playerinput } protected override void PickUp(int id) { base.PickUp(id); Debug.Log("overrided written"); } }