forked from OrekiWoof/ChestPreview
22 lines
720 B
C#
22 lines
720 B
C#
namespace ChestPreview.Configs;
|
|
|
|
public sealed class Config
|
|
{
|
|
public string Mode { get; set; } = PreviewModes.UNDER_CURSOR;
|
|
|
|
public bool HoldKey { get; set; } = true;
|
|
|
|
public int BillboardColumnsPerBlock { get; set; } = 4;
|
|
|
|
public int ColumnsUnderCursor { get; set; } = 10;
|
|
|
|
public int PreviewNearbyRadius { get; set; } = 8;
|
|
|
|
public bool WhitelistedContainersOnly { get; set; } = true;
|
|
|
|
public string WhitelistedContainers { get; set; } = "barrel, crate, chest-*, trunk-*, storagevessel-*, stationarybasket-*, labeledchest-*, groundstorage";
|
|
|
|
public string BlacklistedContainers { get; set; } = "";
|
|
|
|
public bool GroundStorageOnlyContainers { get; set; } = true;
|
|
} |