15 lines
221 B
C#
15 lines
221 B
C#
namespace Fantasy
|
|
{
|
|
internal interface ISceneUpdate
|
|
{
|
|
void Update();
|
|
}
|
|
|
|
internal sealed class EmptySceneUpdate : ISceneUpdate
|
|
{
|
|
public void Update()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |