11 lines
250 B
C#
11 lines
250 B
C#
namespace Content.Shared.Procedural.PostGeneration;
|
|
|
|
/// <summary>
|
|
/// Ran after generating dungeon rooms. Can be used for additional loot, contents, etc.
|
|
/// </summary>
|
|
[ImplicitDataDefinitionForInheritors]
|
|
public partial interface IPostDunGen
|
|
{
|
|
|
|
}
|