* May 18th, 2005: Starting to develop AMXX-Edit v2 as a kind of open source

This commit is contained in:
Christian Hammacher
2005-05-18 20:53:06 +00:00
parent 3642cedd2b
commit dd6abc5487
19 changed files with 9817 additions and 0 deletions

View File

@ -0,0 +1,24 @@
unit UnitHowToMakePlayerMenu;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls,
StdCtrls, ExtCtrls, Forms, CorelButton;
type
TfrmHowToMakePlayerMenu = class(TForm)
lblHowTo: TLabel;
txtTutorial: TMemo;
cmdOK: TCorelButton;
cmdExample: TCorelButton;
end;
var
frmHowToMakePlayerMenu: TfrmHowToMakePlayerMenu;
implementation
{$R *.DFM}
end.