mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
25 lines
341 B
ObjectPascal
25 lines
341 B
ObjectPascal
unit wnd_webrunform;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls, Buttons;
|
|
|
|
type
|
|
Twnd_webrunform = class(TForm)
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
wnd_webrunform: Twnd_webrunform;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|