Axiom.RenderSystems.OpenGLES.Android.AndroidSupport.NewWindow C# (CSharp) Method

NewWindow() public method

public NewWindow ( string name, int width, int height, bool fullScreen, Collections miscParams = null ) : Graphics.RenderWindow
name string
width int
height int
fullScreen bool
miscParams Collections
return Graphics.RenderWindow
		public override Graphics.RenderWindow NewWindow( string name, int width, int height, bool fullScreen, Collections.NamedParameterList miscParams = null )
		{
			AndroidWindow window = new AndroidWindow();
			window.Create( name, width, height, fullScreen, miscParams );
			return window;
		}