예제 #1
0
파일: Prereq.cs 프로젝트: DeCarabas/iggy
 public Or4Prereq(Prereq first, Prereq second, Prereq third, Prereq fourth)
 {
     this.first  = first;
     this.second = second;
     this.third  = third;
     this.fourth = fourth;
 }
예제 #2
0
파일: Prereq.cs 프로젝트: zombisaur/iggy
 public static Prereq Or(Prereq a, Prereq b, Prereq c, Prereq d)
 {
     return new Or4Prereq(a, b, c, d);
 }
예제 #3
0
파일: Prereq.cs 프로젝트: zombisaur/iggy
 public static Prereq Or(Prereq left, Prereq right)
 {
     return new OrPrereq(left, right);
 }
예제 #4
0
파일: Prereq.cs 프로젝트: zombisaur/iggy
 public static Prereq Not(Prereq prereq)
 {
     return new NotPrereq(prereq);
 }
예제 #5
0
파일: Prereq.cs 프로젝트: zombisaur/iggy
 public static Prereq AnyN(int count, Prereq[] prereqs)
 {
     return new AnyNOfPrereq(count, prereqs);
 }
예제 #6
0
파일: Prereq.cs 프로젝트: zombisaur/iggy
 public OrPrereq(Prereq left, Prereq right)
 {
     this.left = left;
     this.right = right;
 }
예제 #7
0
파일: Prereq.cs 프로젝트: zombisaur/iggy
 public Or4Prereq(Prereq first, Prereq second, Prereq third, Prereq fourth)
 {
     this.first = first;
     this.second = second;
     this.third = third;
     this.fourth = fourth;
 }
예제 #8
0
파일: Prereq.cs 프로젝트: zombisaur/iggy
 public NotPrereq(Prereq prereq)
 {
     this.prereq = prereq;
 }
예제 #9
0
파일: Prereq.cs 프로젝트: zombisaur/iggy
 public static Prereq And(Prereq left, Prereq right)
 {
     return new AndPrereq(left, right);
 }
예제 #10
0
파일: Prereq.cs 프로젝트: zombisaur/iggy
 public AnyNOfPrereq(int count, Prereq[] prereqs)
 {
     this.count = count;
     this.prereqs = prereqs;
 }
예제 #11
0
파일: Prereq.cs 프로젝트: DeCarabas/iggy
 public static Prereq Or(Prereq a, Prereq b, Prereq c, Prereq d)
 {
     return(new Or4Prereq(a, b, c, d));
 }
예제 #12
0
파일: Prereq.cs 프로젝트: DeCarabas/iggy
 public static Prereq Or(Prereq left, Prereq right)
 {
     return(new OrPrereq(left, right));
 }
예제 #13
0
파일: Prereq.cs 프로젝트: DeCarabas/iggy
 public static Prereq Not(Prereq prereq)
 {
     return(new NotPrereq(prereq));
 }
예제 #14
0
파일: Prereq.cs 프로젝트: DeCarabas/iggy
 public NotPrereq(Prereq prereq)
 {
     this.prereq = prereq;
 }
예제 #15
0
파일: Prereq.cs 프로젝트: DeCarabas/iggy
 public OrPrereq(Prereq left, Prereq right)
 {
     this.left  = left;
     this.right = right;
 }
예제 #16
0
파일: Prereq.cs 프로젝트: DeCarabas/iggy
 public static Prereq And(Prereq left, Prereq right)
 {
     return(new AndPrereq(left, right));
 }