Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. public class ProgramSettings
  2. {
  3.     public int ScreenWidth { get; set; }
  4.     public int ScreenHeight { get; set; }
  5.  
  6.     public ProgramSettings (int height, int width)
  7.     {
  8.         ScreenWidth = width;
  9.         ScreenHeight = height;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement