コード例 #1
0
 public BulletControl(SBCF act, Pred persistent, int priority, ICancellee cT)
 {
     action        = act;
     persist       = persistent;
     this.priority = priority;
     this.cT       = cT;
 }
コード例 #2
0
ファイル: BulletManager.cs プロジェクト: Bagoum/danmokou
 public static SBCFc Manual(SBCF f, int p) => new SBCFc(f, p);
コード例 #3
0
 public BulletControl(SBCFc act, Pred persistent, ICancellee?cT)
 {
     action        = act.Func(this.cT = cT ?? Cancellable.Null);
     persist       = persistent;
     this.priority = act.priority;
 }
コード例 #4
0
ファイル: BulletManager.cs プロジェクト: Bagoum/danmokou
 private SBCFc(SBCF f, int p)
 {
     func     = f;
     priority = p;
     lazyFunc = null;
 }