Browse Source

Removed (currently) unnecessary setters from the SdlWindow properties.

improved_timing
Ian Burgmyer 7 years ago
parent
commit
b1ac948007
  1. 4
      DotSDL/Graphics/SdlWindow.cs

4
DotSDL/Graphics/SdlWindow.cs

@ -12,8 +12,8 @@ namespace DotSDL.Graphics {
private bool _running;
public int Width { get; private set; }
public int Height { get; private set; }
public int Width { get; }
public int Height { get; }
private Color[] _pixels;

Loading…
Cancel
Save