mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
27 lines
370 B
ObjectPascal
27 lines
370 B
ObjectPascal
unit LayoutUnit;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls, ExtCtrls, ExtDlgs, Buttons, Menus,mainunit;
|
|
|
|
|
|
|
|
type
|
|
TLayout = class(TForm)
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
var
|
|
Layout: TLayout;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|