Ejemplo n.º 1
0
 internal void OnContainerPickLocks(MobLockable mobInter, NPCProto npc, char c)
 {
     if (OnPickLocked != null)
     {
         OnPickLocked(mobInter, npc, c);
     }
 }
Ejemplo n.º 2
0
 internal static void OnContainerPickLock(MobLockable mobInter, NPCProto npc, char c)
 {
     mobInter.OnContainerPickLocks(mobInter, npc, c);
     if (OnPickLock != null)
     {
         OnPickLock(mobInter, npc, c);
     }
 }