remove unused vsync parameter from renderers

This commit is contained in:
Chris Forbes
2011-07-12 22:22:03 +12:00
parent df1201b4c2
commit b0ccc58516
5 changed files with 13 additions and 13 deletions

View File

@@ -29,7 +29,7 @@ namespace OpenRA.FileFormats.Graphics
public interface IDeviceFactory
{
IGraphicsDevice Create( Size size, WindowMode windowMode, bool vsync );
IGraphicsDevice Create( Size size, WindowMode windowMode );
}
public interface IGraphicsDevice