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