Esempio n. 1
0
    public void EnableGridObjectEventBehaviors(InteractTypes interactEventType = InteractTypes.leftClick)
    {
        switch (interactEventType)
        {
        case InteractTypes.leftClick:
        {
        }
        break;

        case InteractTypes.rightClick:
        {
            if (behaviorType == BehaviorTypes.component)
            {
                if (component.type == "signal")
                {
                }
            }
        }
        break;
        }
    }
Esempio n. 2
0
 public QStage(int npc = 0, InteractTypes action = InteractTypes.TALK)
 {
     npcID = npc;
     InteractType = action;
 }