-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Content.Shared._RMC14.Prototypes; | ||
Check failure on line 1 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / build (ubuntu-latest)
Check failure on line 1 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / build (ubuntu-latest)
Check failure on line 1 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / build (ubuntu-latest)
Check failure on line 1 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / build (ubuntu-latest)
Check failure on line 1 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / YAML Linter
Check failure on line 1 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / YAML Linter
Check failure on line 1 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / Test Packaging
|
||
using Robust.Shared.Prototypes; | ||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; | ||
|
||
// ReSharper disable once CheckNamespace | ||
namespace Content.Shared.Guidebook; | ||
|
||
public sealed partial class GuideEntryPrototype : IInheritingPrototype, ICMSpecific | ||
Check failure on line 8 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / build (ubuntu-latest)
Check failure on line 8 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / build (ubuntu-latest)
Check failure on line 8 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / build (ubuntu-latest)
Check failure on line 8 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / build (ubuntu-latest)
Check failure on line 8 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / YAML Linter
Check failure on line 8 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / YAML Linter
Check failure on line 8 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / Test Packaging
|
||
{ | ||
[ParentDataField(typeof(AbstractPrototypeIdArraySerializer<GuideEntryPrototype>))] | ||
Check failure on line 10 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / build (ubuntu-latest)
Check failure on line 10 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / build (ubuntu-latest)
Check failure on line 10 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / build (ubuntu-latest)
Check failure on line 10 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / build (ubuntu-latest)
Check failure on line 10 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / YAML Linter
Check failure on line 10 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / YAML Linter
Check failure on line 10 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / Test Packaging
Check failure on line 10 in Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs GitHub Actions / Test Packaging
|
||
public string[]? Parents { get; } | ||
|
||
[NeverPushInheritance] | ||
[AbstractDataField] | ||
public bool Abstract { get; } | ||
|
||
[DataField] | ||
public bool IsCM { get; } | ||
} |