using UnityEngine; using System.Collections; public class PickupWeaponUpgrade : Pickup { protected override void PickupAction() { NotificationCenter.Post(NotificationType.PickedUpWeaponUpgrade, type); } }