From 19a6a7bbcf9a6be7be8ffa39470c6d447f214abd Mon Sep 17 00:00:00 2001 From: Taryn Hill Date: Sat, 12 Mar 2016 13:46:38 -0600 Subject: [PATCH] Add xmldoc to some ISpriteFrame members --- OpenRA.Game/Graphics/SpriteLoader.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/OpenRA.Game/Graphics/SpriteLoader.cs b/OpenRA.Game/Graphics/SpriteLoader.cs index 1545b43d57..56701b85eb 100644 --- a/OpenRA.Game/Graphics/SpriteLoader.cs +++ b/OpenRA.Game/Graphics/SpriteLoader.cs @@ -24,8 +24,17 @@ namespace OpenRA.Graphics public interface ISpriteFrame { + /// + /// Size of the frame's `Data`. + /// Size Size { get; } + + /// + /// Size of the entire frame including the frame's `Size`. + /// Think of this like a picture frame. + /// Size FrameSize { get; } + float2 Offset { get; } byte[] Data { get; } bool DisableExportPadding { get; }