Adding PAI Slot to PDA (#21086)
* Adding PAI Slot to PDA * Update PdaComponent.cs * Update pda.yml * Update tags.yml Sorting it alphabetically * Adding PDA UI Elements. * Addressing reviews * Update PdaComponent.cs * Update Content.Shared/PDA/SharedPdaSystem.cs Co-authored-by: faint <46868845+ficcialfaint@users.noreply.github.com> * Update Content.Shared/PDA/SharedPdaSystem.cs Co-authored-by: faint <46868845+ficcialfaint@users.noreply.github.com> * Update Resources/Prototypes/Entities/Objects/Devices/pda.yml Co-authored-by: faint <46868845+ficcialfaint@users.noreply.github.com> * Update PdaComponent.cs * Update PdaComponent.cs --------- Co-authored-by: faint <46868845+ficcialfaint@users.noreply.github.com>
This commit is contained in:
@@ -10,6 +10,7 @@ namespace Content.Shared.PDA
|
||||
{
|
||||
public bool FlashlightEnabled;
|
||||
public bool HasPen;
|
||||
public bool HasPai;
|
||||
public PdaIdInfoText PdaOwnerInfo;
|
||||
public string? StationName;
|
||||
public bool HasUplink;
|
||||
@@ -21,6 +22,7 @@ namespace Content.Shared.PDA
|
||||
NetEntity? activeUI,
|
||||
bool flashlightEnabled,
|
||||
bool hasPen,
|
||||
bool hasPai,
|
||||
PdaIdInfoText pdaOwnerInfo,
|
||||
string? stationName,
|
||||
bool hasUplink = false,
|
||||
@@ -30,6 +32,7 @@ namespace Content.Shared.PDA
|
||||
{
|
||||
FlashlightEnabled = flashlightEnabled;
|
||||
HasPen = hasPen;
|
||||
HasPai = hasPai;
|
||||
PdaOwnerInfo = pdaOwnerInfo;
|
||||
HasUplink = hasUplink;
|
||||
CanPlayMusic = canPlayMusic;
|
||||
|
||||
Reference in New Issue
Block a user