Added : OpenRA.Renderer.Null
This commit is contained in:
21
OpenRA.Renderer.Null/NullTexture.cs
Normal file
21
OpenRA.Renderer.Null/NullTexture.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.Drawing;
|
||||
using OpenRA.FileFormats.Graphics;
|
||||
|
||||
namespace OpenRA.Renderer.Null
|
||||
{
|
||||
public class NullTexture : ITexture
|
||||
{
|
||||
public void SetData(Bitmap bitmap)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void SetData(uint[,] colors)
|
||||
{
|
||||
}
|
||||
|
||||
public void SetData(byte[] colors, int width, int height)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user