예제 #1
0
파일: LiquidHost.cs 프로젝트: tanis2000/FEZ
 public WaterTransitionRenderer(Game game, LiquidHost host)
   : base(game)
 {
   this.DrawOrder = 1001;
   this.Host = host;
 }
예제 #2
0
파일: LiquidHost.cs 프로젝트: tanis2000/FEZ
 public LiquidHost(Game game)
   : base(game)
 {
   this.DrawOrder = 50;
   LiquidHost.Instance = this;
 }