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