mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 09:37:03 +02:00
16 lines
392 B
C#
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);
|
|
}
|
|
}
|