Files
RobustToolbox/Robust.Client/Graphics/IRsiStateLike.cs
T

16 lines
392 B
C#

using Robust.Shared.Graphics.RSI;
namespace Robust.Client.Graphics
{
[NotContentImplementable]
public interface IRsiStateLike : IDirectionalTextureProvider
{
RsiDirectionType RsiDirections { get; }
bool IsAnimated { get; }
int AnimationFrameCount { get; }
float GetDelay(int frame);
Texture GetFrame(RsiDirection dir, int frame);
}
}