|
@@ -31,6 +31,10 @@ End
|
|
|
#rem monkeydoc The Window class.
|
|
|
#end
|
|
|
Class Window Extends View
|
|
|
+
|
|
|
+ Method New()
|
|
|
+ Init( "Window",New Recti( 0,0,640,480),WindowFlags.Center )
|
|
|
+ End
|
|
|
|
|
|
Method New( title:String="Window",width:Int=640,height:Int=480,flags:WindowFlags=Null )
|
|
|
Init( title,New Recti( 0,0,width,height ),flags|WindowFlags.Center )
|
|
@@ -38,6 +42,7 @@ Class Window Extends View
|
|
|
|
|
|
Method New( title:String,rect:Recti,flags:WindowFlags=Null )
|
|
|
Init( title,rect,flags )
|
|
|
+
|
|
|
End
|
|
|
|
|
|
#rem monkeydoc The window title text.
|