Add xmldoc to some ISpriteFrame members

This commit is contained in:
Taryn Hill
2016-03-12 13:46:38 -06:00
parent f3c8dd0397
commit 19a6a7bbcf

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; }