mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
17 lines
475 B
C#
17 lines
475 B
C#
using GorgonLibrary.Graphics;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
|
|
namespace SS14.Client.Interfaces.GOC
|
|
{
|
|
public interface ISpriteComponent
|
|
{
|
|
RectangleF AABB { get; }
|
|
Sprite GetCurrentSprite();
|
|
Sprite GetSprite(string spriteKey);
|
|
List<Sprite> GetAllSprites();
|
|
void SetSpriteByKey(string spriteKey);
|
|
void AddSprite(string spriteKey);
|
|
void AddSprite(string key, Sprite spritetoadd);
|
|
}
|
|
} |