idTech4.Renderer.VideoMode.VideoMode C# (CSharp) Method

VideoMode() public method

public VideoMode ( string description, int width, int height ) : System
description string
width int
height int
return System
		public VideoMode(string description, int width, int height)
		{
			this.Description = description;
			this.Width = width;
			this.Height = height;
		}
	}
VideoMode