예제 #1
0
 public SdlLine(SdlVector start, SdlVector end)
 {
     this.Start = start;
     this.End   = end;
 }
예제 #2
0
 public SdlLine(int x1, int y1, int x2, int y2)
 {
     this.Start = new SdlVector(x1, y1);
     this.End   = new SdlVector(x2, y2);
 }
예제 #3
0
 public SdlWindow(IntPtr validHandle, bool ownsHandle, string title, SdlVector position, SdlVector size) : base(validHandle, ownsHandle)
 {
     this.title    = title;
     this.position = position;
     this.size     = size;
 }