first commit (2005-12-25)

This commit is contained in:
2021-09-01 18:26:41 +02:00
commit a86196a6a9
439 changed files with 402271 additions and 0 deletions

28
scr/TInfoBox.cpp Normal file
View File

@ -0,0 +1,28 @@
//---------------------------------------------------------------------------
#include <vcl.h>
#include <mmsystem.h>
#pragma hdrstop
#include "TInfoBox.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TInfoBox *InfoBox;
//---------------------------------------------------------------------------
__fastcall TInfoBox::TInfoBox(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TInfoBox::BitBtn1Click(TObject *Sender)
{
sndPlaySound(0,0);
Visible=false;
}
//---------------------------------------------------------------------------
void __fastcall TInfoBox::FormShow(TObject *Sender)
{
// sndPlaySound("snd\\recibiendoAtaque.wav", SND_ASYNC | SND_FILENAME | SND_LOOP);
}
//---------------------------------------------------------------------------