Track LocalMods as part of monolith

This commit is contained in:
2026-06-08 18:50:16 +03:00
parent 143f2fed7c
commit 1b214b44c2
1287 changed files with 139255 additions and 1 deletions
@@ -0,0 +1,30 @@
using Barotrauma;
using MoreLevelContent.Missions;
using System;
using System.Collections.Generic;
namespace MoreLevelContent.Shared.Content
{
public class CustomMissions
{
public static readonly Dictionary<CustomMissionType, Type> MissionDefs = new()
{
{ CustomMissionType.BeaconConstruction, typeof(BeaconConstMission) },
{ CustomMissionType.DistressEscort, typeof(DistressEscortMission) },
{ CustomMissionType.DistressSubmarine, typeof(DistressSubmarineMission) },
{ CustomMissionType.DistressGhostship, typeof(DistressGhostshipMission) },
{ CustomMissionType.CablePuzzle, typeof(CablePuzzleMission) }
};
}
public enum CustomMissionType
{
BeaconConstruction,
DistressEscort,
DistressSubmarine,
DistressGhostship,
CablePuzzle
//DistressOutpost
}
}