mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
24 lines
326 B
ObjectPascal
24 lines
326 B
ObjectPascal
unit setgroupunit;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls;
|
|
|
|
type
|
|
TSetGroup = class(TForm)
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
SetGroup: TSetGroup;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|