13 lines
240 BLFS
C#
Executable File
13 lines
240 BLFS
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace MoreLevelContent.Shared.Generation.Interfaces
|
|
{
|
|
interface IRoundStatus
|
|
{
|
|
void BeforeRoundStart();
|
|
void RoundEnd();
|
|
}
|
|
}
|