interim hack to support use of raw data in Sheet

This commit is contained in:
Chris Forbes
2010-08-19 18:42:45 +12:00
parent db7a11e8a6
commit 1595c6a0ed
2 changed files with 24 additions and 23 deletions

View File

@@ -71,15 +71,9 @@ namespace OpenRA.FileFormats.Graphics
public interface ITexture
{
void SetData( Bitmap bitmap );
void SetData(Bitmap bitmap);
void SetData(uint[,] colors);
}
public interface IFont
{
void DrawText( string text, int2 pos, Color c );
int2 Measure( string text );
void SetData(byte[] colors, int width, int height);
}
public enum PrimitiveType