Changed type names to be more appropriate

This commit is contained in:
2017-03-01 02:45:27 -05:00
parent 3de77f9ad6
commit 4d69119f40
13 changed files with 45 additions and 47 deletions

View File

@@ -1,7 +1,6 @@
using System;
using System.IO;
using System.Linq;
using Diamond;
using Diamond.Buffers;
using Diamond.Level;
using Diamond.Shaders;
@@ -25,8 +24,8 @@ namespace hexworld
private Texture _doorTex;
private Texture _grassTex;
private GLBuffer<ObjVertex> _meshBuffer;
private GLBuffer<TileData> _tileBuffer;
private Buffer<ObjVertex> _meshBuffer;
private Buffer<TileData> _tileBuffer;
protected override void OnClosed(EventArgs e)
{
@@ -53,7 +52,6 @@ namespace hexworld
#endregion
public HexRender(int width, int height)
: base(width, height, new GraphicsMode(32, 24, 0, 0))
{