Files
BarotraumaModServer/LocalMods/More Level Content/CSharp/Client/Missions/BeaconConstMission.cs
2026-06-09 00:42:10 +03:00

15 lines
320 BLFS
C#
Executable File

using Barotrauma;
using System;
using System.Collections.Generic;
using System.Text;
namespace MoreLevelContent.Missions
{
partial class BeaconConstMission : Mission
{
public override bool DisplayAsCompleted => State > 0;
public override bool DisplayAsFailed => false;
}
}