Interface IDungeonGeneratorPostProcessing<TLevel, TCallbacks>
Common interface for post-processing logic.
Assembly: cs.temp.dll.dll
Syntax
public interface IDungeonGeneratorPostProcessing<in TLevel, in TCallbacks>
Type Parameters
Name |
Description |
TLevel |
|
TCallbacks |
|
Properties
Random | Instance of a random numbers generator that is used throughout the whole process of generating a level.
|
Random
Instance of a random numbers generator that is used throughout the whole process of generating a level.
Declaration
Property Value
Remarks
Methods
RegisterCallbacks(TCallbacks)
Declaration
void RegisterCallbacks(TCallbacks callbacks)
Parameters
Type |
Name |
Description |
TCallbacks |
callbacks |
|
Run(TLevel)
Runs the post-processing logic with a given generated level.
Declaration
Parameters
Type |
Name |
Description |
TLevel |
level |
|
SetRandomGenerator(Random)
Declaration
void SetRandomGenerator(Random random)
Parameters
Type |
Name |
Description |
Random |
random |
|