Make RenderThreadState a class instead of a struct

Structs can't have explicit parameterless constructors
This commit is contained in:
Mitchell Kutchuk 2015-05-17 22:35:25 -07:00
parent 967c1f8d39
commit e724e8f54a

View File

@ -104,7 +104,7 @@ namespace TrueCraft.Client
Coordinates3D.West
};
private struct RenderThreadState
private class RenderThreadState
{
public readonly List<VertexPositionNormalTexture> OpaqueVerticies;
public readonly List<int> OpaqueIndicies;