mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-07-04 09:33:43 -04:00
Add new FCMaterials file classes.
This commit is contained in:
16
ObservatoryFramework/Files/ModuleInfoFile.cs
Normal file
16
ObservatoryFramework/Files/ModuleInfoFile.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files
|
||||
{
|
||||
/// <summary>
|
||||
/// Information about current player ship equipped modules.
|
||||
/// </summary>
|
||||
public class ModuleInfoFile : Journal.JournalBase
|
||||
{
|
||||
/// <summary>
|
||||
/// List of all equipped modules.
|
||||
/// </summary>
|
||||
public ImmutableList<Module> Modules { get; init; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user