Example #1
0
        public override Graphics.RenderWindow NewWindow(string name, int width, int height, bool fullScreen, Collections.NamedParameterList miscParams = null)
        {
            var window = new AndroidWindow();

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