Files
crystall-punk-14/Content.Shared/_CP14/Fishing/Components/CP14FishingIconComponent.cs
Tornado Tech dbcf17bab2 Updated system
2024-12-09 02:29:33 +10:00

14 lines
412 B
C#

using Robust.Shared.GameStates;
using Robust.Shared.Utility;
namespace Content.Shared._CP14.Fishing.Components;
[RegisterComponent, NetworkedComponent]
public sealed partial class CP14FishingIconComponent : Component
{
public static readonly ResPath DefaultTexturePath = new("/Textures/_CP14/Interface/Fishing/Icons/default.png");
[DataField]
public ResPath TexturePath = DefaultTexturePath;
}