Changes for prototype load parallelization (#13066)
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
584921b423
commit
a323671984
@@ -7,14 +7,7 @@ namespace Content.Shared.Atmos.Prototypes
|
||||
[Prototype("gas")]
|
||||
public sealed class GasPrototype : IPrototype
|
||||
{
|
||||
private string _name = string.Empty;
|
||||
|
||||
[DataField("name")]
|
||||
public string Name
|
||||
{
|
||||
get => _name;
|
||||
private set => _name = Loc.GetString(value);
|
||||
}
|
||||
[DataField("name")] public string Name { get; set; } = "";
|
||||
|
||||
// TODO: Control gas amount necessary for overlay to appear
|
||||
// TODO: Add interfaces for gas behaviours e.g. breathing, burning
|
||||
|
||||
Reference in New Issue
Block a user