Files
BarotraumaModServer/LocalMods/More Level Content/CSharp/Shared/Generation/Interfaces/IActive.cs

12 lines
201 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Text;
namespace MoreLevelContent.Shared.Generation.Interfaces
{
public interface IActive
{
bool Active { get; }
}
}