9 lines
213 B
C#
9 lines
213 B
C#
using Cysharp.Threading.Tasks;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public interface IOnWorldGenerationCompletedCallback
|
|
{
|
|
UniTask OnWorldGenerationCompletedAsync(World world);
|
|
}
|
|
} |