riversong code showcase
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
public struct WorldGenerationCompletedSignal
|
||||
{
|
||||
public List<IOnWorldGenerationCompletedCallback> Callbacks;
|
||||
|
||||
public WorldGenerationCompletedSignal(List<IOnWorldGenerationCompletedCallback> callbacks)
|
||||
{
|
||||
Callbacks = callbacks;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user