Exemple #1
0
 internal void iOnUnTrigger(MobInter mobInter, NPCProto npc)
 {
     if (OnUnTrigger != null)
     {
         OnUnTrigger(mobInter, npc);
     }
 }
Exemple #2
0
 internal void iOnStopInteraction(MobInter mobInter, NPCProto npc)
 {
     if (OnStopInteraction != null)
     {
         OnStopInteraction(mobInter, npc);
     }
 }
Exemple #3
0
 internal static void isOnTrigger(MobInter mobInter, NPCProto npc)
 {
     mobInter.iOnTrigger(mobInter, npc);
     if (sOnTrigger != null)
     {
         sOnTrigger(mobInter, npc);
     }
 }
Exemple #4
0
 internal static void isOnStopInteraction(MobInter mobInter, NPCProto npc)
 {
     mobInter.iOnStopInteraction(mobInter, npc);
     if (sOnStopInteraction != null)
     {
         sOnStopInteraction(mobInter, npc);
     }
 }