1
0

HolidayRsiSwapComponent.cs 422 B

1234567891011121314
  1. namespace Content.Client.Holiday;
  2. /// <summary>
  3. /// This is used for a component that swaps an entity's RSI based on HolidayVisuals
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class HolidayRsiSwapComponent : Component
  7. {
  8. /// <summary>
  9. /// A dictionary of arbitrary visual keys to an rsi to swap the sprite to.
  10. /// </summary>
  11. [DataField]
  12. public Dictionary<string, string> Sprite = new();
  13. }