SA-MP/exgui/About.pas

25 lines
292 B
ObjectPascal
Raw Normal View History

2023-11-07 17:10:47 +08:00
unit About;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
2023-11-07 23:44:02 +08:00
TfmAbout = class(TForm)
2023-11-07 17:10:47 +08:00
private
{ Private declarations }
public
{ Public declarations }
end;
var
2023-11-07 23:44:02 +08:00
fmAbout: TfmAbout;
2023-11-07 17:10:47 +08:00
implementation
{$R *.dfm}
end.