//--------------------------------------------------------------------------- #ifndef AnimFPH #define AnimFPH //--------------------------------------------------------------------------- #include #include #include #include #include //--------------------------------------------------------------------------- class TFP : public TForm { __published: // Composants gérés par l'EDI TImage *Fond; TTimer *Timer; void __fastcall FormCreate(TObject *Sender); void __fastcall TimerTimer(TObject *Sender); private: // Déclarations de l'utilisateur public: // Déclarations de l'utilisateur __fastcall TFP(TComponent* Owner); __fastcall ~TFP(); }; //--------------------------------------------------------------------------- extern TFP *FP; //--------------------------------------------------------------------------- #endif