forked from new-frontiers-14/frontier-station-14
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4eb4b8f
commit 3237c99
Showing
4 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
Content.Server/Shuttles/Components/StationColiseumComponent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using Robust.Shared.Map; | ||
using Robust.Shared.Utility; | ||
|
||
namespace Content.Server.Shuttles.Components; | ||
|
||
[RegisterComponent] | ||
public sealed partial class StationColiseumComponent : Component | ||
{ | ||
[DataField] | ||
public float ShuttleIndex; | ||
|
||
[DataField] | ||
public ResPath Map = new("/Maps/Corvax/POI/coliseum.yml"); | ||
|
||
[DataField] | ||
public EntityUid? Entity; | ||
|
||
[DataField] | ||
public EntityUid? MapEntity; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
- type: entity | ||
id: BaseStationColiseum | ||
abstract: true | ||
components: | ||
- type: StationColiseum |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters