forked from Shardstone/trail-into-darkness
10 lines
217 B
C#
10 lines
217 B
C#
using System;
|
|
|
|
namespace Nox.Core {
|
|
public interface ISceneTransition {
|
|
bool IsTransitioning { get; }
|
|
void FadeOut(Action onComplete = null);
|
|
void FadeIn(Action onComplete = null);
|
|
}
|
|
}
|