Files
RobustToolbox/Robust.Shared/MountOptions.cs
Pieter-Jan Briers ede4962751 Allow specifying resource mount parameters via command line.
Necessary for engine versioning.
2020-12-04 00:15:08 +01:00

11 lines
211 B
C#

using System.Collections.Generic;
namespace Robust.Shared
{
internal sealed class MountOptions
{
public List<string> ZipMounts = new();
public List<string> DirMounts = new();
}
}