SA-MP/exgui/ExportFavorites.pas

27 lines
401 B
ObjectPascal
Raw Permalink Normal View History

2023-11-07 17:10:47 +08:00
unit ExportFavorites;
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
TfmExportFavorites = class(TForm)
2023-12-02 20:35:55 +08:00
cbIncludeSavedPasswords: TCheckBox;
bnOk: TButton;
2023-11-07 17:10:47 +08:00
private
{ Private declarations }
public
{ Public declarations }
end;
var
2023-11-07 23:44:02 +08:00
fmExportFavorites: TfmExportFavorites;
2023-11-07 17:10:47 +08:00
implementation
{$R *.dfm}
end.