From 6735809d2403e6bf1fe251fc95014d216ff826a5 Mon Sep 17 00:00:00 2001 From: Dmitriy <108795395+Sh1ntra@users.noreply.github.com> Date: Tue, 7 May 2024 05:46:54 +0300 Subject: [PATCH] Create InflationCargoCrateComponent.cs --- .../Corvax/Inflation/InflationCargoCrateComponent.cs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Content.Server/Corvax/Inflation/InflationCargoCrateComponent.cs diff --git a/Content.Server/Corvax/Inflation/InflationCargoCrateComponent.cs b/Content.Server/Corvax/Inflation/InflationCargoCrateComponent.cs new file mode 100644 index 00000000000..c9634017c71 --- /dev/null +++ b/Content.Server/Corvax/Inflation/InflationCargoCrateComponent.cs @@ -0,0 +1,7 @@ +[RegisterComponent] +[AutoGenerateComponentState] +public sealed partial class InflationCargoCrateComponent : Component +{ + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool IsInflated = false; +}