* wallpaper system * fix startup ordering * cool doAfters * green test wallpapers * wallpaper finite stacks * dev update * Update CP14ClientWallpaperSystem.cs * fix wall rotations * yippee * Update battle_royale.yml * Update test-ship.yml
12 lines
315 B
C#
12 lines
315 B
C#
namespace Content.Shared._CP14.Wallpaper;
|
|
|
|
/// <summary>
|
|
/// After a delay, it removes all wallpaper from the entity.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(CP14SharedWallpaperSystem))]
|
|
public sealed partial class CP14WallpaperRemoverComponent : Component
|
|
{
|
|
[DataField]
|
|
public float Delay = 1f;
|
|
}
|