PickupSpermicidalWave.cs 305 B

123456789101112131415
  1. using UnityEngine;
  2. using System.Collections;
  3. public class PickupSpermicidalWave : Pickup
  4. {
  5. protected override void PickupAction()
  6. {
  7. NotificationCenter.Post(NotificationType.PickedUpSpermicidalWave);
  8. }
  9. protected override Transform GetTarget()
  10. {
  11. return ButtonSpermicidalWave.GetTransform();
  12. }
  13. }