sneak/Shared/IWorld.cs

8 lines
149 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);
}
}