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

13 lines
228 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Text;
namespace MoreLevelContent.Shared.Generation.Interfaces
{
interface IRoundStatus
{
void BeforeRoundStart();
void RoundEnd();
}
}