Station Anchor (#26098)

* Work on abstracting out chargeup functionality/ui from grav gen

* Work on station anchor

* Finish implementing station anchors

* uhh yeah

* ok.

* fix tests

* whoops

* Get the last extraneous yaml fail

* PJB review

* beast mode... ACTIVATE!

---------

Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com>
Co-authored-by: EmoGarbage404 <retron404@gmail.com>
This commit is contained in:
Julian Giebel
2024-08-31 16:40:28 +02:00
committed by GitHub
parent 8dbaca33e6
commit 417d3a87a2
30 changed files with 944 additions and 541 deletions

View File

@@ -0,0 +1,14 @@
namespace Content.Shared.Power;
/// <summary>
/// Component for a powered machine that slowly powers on and off over a period of time.
/// </summary>
public abstract partial class SharedPowerChargeComponent : Component
{
/// <summary>
/// The title used for the default charged machine window if used
/// </summary>
[DataField]
public LocId WindowTitle { get; set; } = string.Empty;
}