Added : OpenRA.Renderer.Null

This commit is contained in:
geckosoft
2010-11-01 03:50:21 +01:00
parent 56598ce2ff
commit d050d1a4b9
8 changed files with 263 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using System;
using OpenRA.FileFormats.Graphics;
namespace OpenRA.Renderer.Null
{
public class NullShader : IShader
{
public void SetValue(string name, float x, float y)
{
}
public void SetValue(string param, ITexture texture)
{
}
public void Commit()
{
}
public void Render(Action a)
{
}
}
}