sneak/Shared/IWorld.cs

9 lines
176 B
C#
Raw Normal View History

2020-07-15 15:33:59 +00:00
using System;
namespace SemiColinGames {
public interface IWorld : IDisposable {
void Update(float modelTime, History<Input> input);
Camera Camera { get; }
}
}