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