8 lines
149 B
C#
8 lines
149 B
C#
using System;
|
|
|
|
namespace SemiColinGames {
|
|
public interface IWorld : IDisposable {
|
|
void Update(float modelTime, History<Input> input);
|
|
}
|
|
}
|