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

12 lines
197 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Text;
namespace MoreLevelContent.Shared.Generation.Interfaces
{
interface IGenerateNPCs
{
void SpawnNPCs();
}
}