Ejemplo n.º 1
0
 internal HandleManual(ReformedRoleReversalCoroutineHandler coroutines, Init init)
 {
     this.coroutines = coroutines;
     this.init       = init;
     reversal        = init.Reversal;
     interact        = init.Interact;
 }
Ejemplo n.º 2
0
        internal Init(ReformedRoleReversalCoroutineHandler coroutines, ReformedRoleReversal reversal)
        {
            Reversal   = reversal;
            Coroutines = coroutines;

            Interact = new Interact(this);
            Manual   = new HandleManual(coroutines, this);
        }