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