first commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using NitroxClient.GameLogic.Spawning.Metadata.Extractor.Abstract;
|
||||
using NitroxModel.DataStructures.GameLogic.Entities.Metadata;
|
||||
|
||||
namespace NitroxClient.GameLogic.Spawning.Metadata.Extractor;
|
||||
|
||||
public class SealedDoorMetadataExtractor : EntityMetadataExtractor<Sealed, SealedDoorMetadata>
|
||||
{
|
||||
public override SealedDoorMetadata Extract(Sealed entity)
|
||||
{
|
||||
return new(entity._sealed, entity.openedAmount);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user