OldSchoolHack

Registrieren / Anmelden Deutsch

Form bei einer .dll?

icon Thema: Form bei einer .dll?

Anmeldungsdatum: Mai 2011

Beiträge: 6

CPP Code:
  1. void cMenu::SetBox( int x, int y,int ColorType, char *text, IDirect3DDevice9* pDevice )
  2. {
  3. DrawBox(x, y, 75, 20, 1, D3DCOLOR_ARGB(255,ColorType, ColorType, ColorType), D3DCOLOR_ARGB(255,0, 0, 0) ,pDevice);
  4. DrawGameTextPixel( x+5, y, D3DCOLOR_ARGB(255,255,255,255) , text );
  5. }

Habe den SetBox code definiert. D.h nun anders geht es nicht? also muss ich nun immer diese Funktion neu machen. mmh ich dachte das geht auch irgentwie einfacher :3 Das gibt doch bestimmt nen starken FPS drop oder?