コード例 #1
0
ファイル: Booleans.cs プロジェクト: AlexDarigan/CardGame
        private static void If(SkillState skill)
        {
            int jump      = skill.PopBack();
            int condition = skill.PopBack();

            // We jump on the else, not the positive
            if (condition == 0)
            {
                skill.Jump(jump);
            }
        }