SA-MP/exgui/RconConfig.pas

25 lines
322 B
ObjectPascal
Raw Normal View History

2023-11-07 17:10:47 +08:00
unit RconConfig;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
2023-11-07 23:44:02 +08:00
Dialogs, StdCtrls;
2023-11-07 17:10:47 +08:00
type
2023-11-07 23:44:02 +08:00
TfmRconConfig = 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
fmRconConfig: TfmRconConfig;
2023-11-07 17:10:47 +08:00
implementation
{$R *.dfm}
end.