예제 #1
0
        public RenderGlobal(Arcodia game)
        {
            this.Arcodia = game;

            this.BlocksShader = new Shader("Blocks", "block/block");
            this.LightingShader = new Shader("Lighting", "lighting/lighting");
        }
예제 #2
0
 public WorldRenderer(Arcodia game, World world, RenderGlobal renderer)
 {
     this.Arcodia = game;
     this.WorldObj = world;
     this.RenderGlobal = renderer;
 }
예제 #3
0
 public WorldRenderer(Arcodia game, World world)
     : this(game, world, game.RenderGlobal)
 {
 }
예제 #4
0
 public WorldRenderer(Arcodia game)
     : this(game, game.TheWorld)
 {
 }
예제 #5
0
 public Window(int width, int height, string title, Arcodia game)
     : base(width, height)
 {
     this.Title = title;
     this.Arcodia = game;
 }
예제 #6
0
 public Window(int width, int height, Arcodia game)
     : this(width, height, "Legends of Arcodia", game)
 {
 }
예제 #7
0
 public Window(Arcodia game)
     : this(1240, 840, game)
 {
 }