Files
MonoGame.Extended/Source/MonoGame.Extended/IUpdate.cs
T

9 lines
147 B
C#

using Microsoft.Xna.Framework;
namespace MonoGame.Extended
{
public interface IUpdate
{
void Update(GameTime gameTime);
}
}