コード例 #1
0
ファイル: EndLevelTrigger.cs プロジェクト: Kasyene/PBL
 public EndLevelTrigger(GameObject owner, Vector3 minPos, Vector3 maxPos, ShroomGame game) : base(owner)
 {
     minimumPosition = minPos;
     maximumPosition = maxPos;
     this.game       = game;
 }
コード例 #2
0
ファイル: ParticleSystem.cs プロジェクト: Kasyene/PBL
 protected ParticleSystem(ShroomGame game, ContentManager content)
 {
     this.content = content;
     this.game    = game;
 }