Пример #1
0
 internal void OnContainerPickLocks(MobLockable mobInter, NPCProto npc, char c)
 {
     if (OnPickLocked != null)
     {
         OnPickLocked(mobInter, npc, c);
     }
 }
Пример #2
0
 internal static void OnContainerPickLock(MobLockable mobInter, NPCProto npc, char c)
 {
     mobInter.OnContainerPickLocks(mobInter, npc, c);
     if (OnPickLock != null)
     {
         OnPickLock(mobInter, npc, c);
     }
 }