idTech4.UI.idBindWindow.Draw C# (CSharp) Метод

Draw() публичный Метод

public Draw ( float x, float y ) : void
x float
y float
Результат void
		public override void Draw(float x, float y)
		{
			idConsole.Warning("TODO: BindWindow Draw");

			/*idVec4 color = foreColor;

			idStr str;
			if ( waitingOnKey ) {
				str = common->GetLanguageDict()->GetString( "#str_07000" );
			} else if ( bindName.Length() ) {
				str = bindName.c_str();
			} else {
				str = common->GetLanguageDict()->GetString( "#str_07001" );
			}

		//	if ( waitingOnKey || ( hover && !noEvents && Contains(gui->CursorX(), gui->CursorY()) ) ) {
				color = hoverColor;
			} else {
				hover = false;
			}

			dc->DrawText(str, textScale, textAlign, color, textRect, false, -1);*/
		}