Merge pull request #10914 from Phrohdoh/sprite-loader-xmldoc

Add xmldoc to some ISpriteFrame members
This commit is contained in:
Oliver Brakmann
2016-03-12 20:58:34 +01:00

View File

@@ -24,8 +24,17 @@ namespace OpenRA.Graphics
public interface ISpriteFrame
{
/// <summary>
/// Size of the frame's `Data`.
/// </summary>
Size Size { get; }
/// <summary>
/// Size of the entire frame including the frame's `Size`.
/// Think of this like a picture frame.
/// </summary>
Size FrameSize { get; }
float2 Offset { get; }
byte[] Data { get; }
bool DisableExportPadding { get; }