| 1 |
/////////////////////////////////////////////////////////// |
|---|
| 2 |
// TexGen // |
|---|
| 3 |
// утилита для подготовки текстур рельефа // |
|---|
| 4 |
// для игры Проклятые Земли // |
|---|
| 5 |
// Copyright (C) 2007-2008 Gipat Group // |
|---|
| 6 |
// Распространяется на условиях // |
|---|
| 7 |
// Gipat Group's opened EI-editor-utility license // |
|---|
| 8 |
// версии 1.0 // |
|---|
| 9 |
// // |
|---|
| 10 |
// www.gipatgroup.org // |
|---|
| 11 |
/////////////////////////////////////////////////////////// |
|---|
| 12 |
|
|---|
| 13 |
//К работе над данным файлом приложили руки, ноги.... короче аффтары: |
|---|
| 14 |
// 1) Снайпер (sniper-rifle@rambler.ru) |
|---|
| 15 |
|
|---|
| 16 |
//////////////////////////////////////////////////////////////////////// |
|---|
| 17 |
|
|---|
| 18 |
//--------------------------------------------------------------------------- |
|---|
| 19 |
|
|---|
| 20 |
#ifndef LoaderH |
|---|
| 21 |
#define LoaderH |
|---|
| 22 |
//--------------------------------------------------------------------------- |
|---|
| 23 |
#include <Classes.hpp> |
|---|
| 24 |
#include <Controls.hpp> |
|---|
| 25 |
#include <StdCtrls.hpp> |
|---|
| 26 |
#include <Forms.hpp> |
|---|
| 27 |
#include <ExtCtrls.hpp> |
|---|
| 28 |
#include <jpeg.hpp> |
|---|
| 29 |
#include "Main.h" |
|---|
| 30 |
//--------------------------------------------------------------------------- |
|---|
| 31 |
class TFormLoader : public TForm |
|---|
| 32 |
{ |
|---|
| 33 |
__published: // IDE-managed Components |
|---|
| 34 |
TImage *Image; |
|---|
| 35 |
TLabel *lblVersion; |
|---|
| 36 |
TTimer *Timer; |
|---|
| 37 |
TLabel *lblHello; |
|---|
| 38 |
void __fastcall TimerTimer(TObject *Sender); |
|---|
| 39 |
void __fastcall FormCreate(TObject *Sender); |
|---|
| 40 |
private: // User declarations |
|---|
| 41 |
public: // User declarations |
|---|
| 42 |
__fastcall TFormLoader(TComponent* Owner); |
|---|
| 43 |
|
|---|
| 44 |
void ShowForm(bool B=false); |
|---|
| 45 |
void Configure(CConfigFile *C); |
|---|
| 46 |
|
|---|
| 47 |
AnsiString ProgDir; |
|---|
| 48 |
}; |
|---|
| 49 |
//--------------------------------------------------------------------------- |
|---|
| 50 |
extern PACKAGE TFormLoader *FormLoader; |
|---|
| 51 |
//--------------------------------------------------------------------------- |
|---|
| 52 |
#endif |
|---|