/////////////////////////////////////////////////////////// // MobSurgeon // // Редактор mob-ов для Проклятых Земель // // Copyright (C) 2005-2007 Gipat Group // // Распространяется на условиях // // Gipat Group's opened EI-editor-utility license // // версии 1.0 // // // // www.gipatgroup.org // /////////////////////////////////////////////////////////// //К работе над данным файлом приложили руки, ноги.... короче аффтары: // 1) Sagrer (sagrer@yandex.ru) //////////////////////////////////////////////////////////////////////// //--------------------------------------------------------------------------- #ifndef SettsFormH #define SettsFormH //--------------------------------------------------------------------------- #include #include #include #include #include //--------------------------------------------------------------------------- class TSettsF : public TForm { __published: // IDE-managed Components TButton *OkBut; TButton *CancelBut; TCheckBox *UseTMobThreadsCB; TEdit *SaveAttemptsEd; TUpDown *SaveAttemptsUD; TLabel *Label1; TCheckBox *MakeAutoBackupsCB; void __fastcall FormShow(TObject *Sender); void __fastcall OkButClick(TObject *Sender); void __fastcall CancelButClick(TObject *Sender); private: // User declarations public: // User declarations __fastcall TSettsF(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TSettsF *SettsF; //--------------------------------------------------------------------------- #endif