Automatic holiday sprites (#22929)

This commit is contained in:
Nemanja
2023-12-25 01:52:43 -05:00
committed by GitHub
parent 2d213b8ab0
commit 00813171c1
25 changed files with 237 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
namespace Content.Client.Holiday;
/// <summary>
/// This is used for a component that swaps an entity's RSI based on HolidayVisuals
/// </summary>
[RegisterComponent]
public sealed partial class HolidayRsiSwapComponent : Component
{
/// <summary>
/// A dictionary of arbitrary visual keys to an rsi to swap the sprite to.
/// </summary>
[DataField]
public Dictionary<string, string> Sprite = new();
}