using UnityEngine; using System.Collections; public class PickupSpermicidalWave : Pickup { protected override void PickupAction() { NotificationCenter.Post(NotificationType.PickedUpSpermicidalWave); } protected override Transform GetTarget() { return ButtonSpermicidalWave.GetTransform(); } }