BSOne.SFC/EM.Lib/ImageEn_SRC/Demos/Other/Morphing/umsg.pas

27 lines
368 B
Plaintext

unit umsg;
interface
uses
Windows, Messages, SysUtils, {$IfNDef VER130} Variants, {$EndIf} Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls;
type
Tfmsg = class(TForm)
Panel1: TPanel;
Label1: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
fmsg: Tfmsg;
implementation
{$R *.dfm}
end.