Remove internal state from ISpriteSequence API.

This commit is contained in:
Paul Chote
2022-12-29 09:32:20 +13:00
committed by Gustas
parent 279869b4c5
commit b051211842
3 changed files with 4 additions and 16 deletions

View File

@@ -22,16 +22,12 @@ namespace OpenRA.Graphics
public interface ISpriteSequence
{
string Name { get; }
int Start { get; }
int Length { get; }
int Stride { get; }
int Facings { get; }
int InterpolatedFacings { get; }
int Tick { get; }
int ZOffset { get; }
int ShadowStart { get; }
int ShadowZOffset { get; }
int[] Frames { get; }
Rectangle Bounds { get; }
bool IgnoreWorldTint { get; }
float Scale { get; }