mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
36 lines
462 B
ObjectPascal
36 lines
462 B
ObjectPascal
unit formScanningUnit;
|
|
|
|
{obsolete}
|
|
|
|
{$MODE Delphi}
|
|
|
|
interface
|
|
|
|
uses
|
|
windows, LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls, ComCtrls, ExtCtrls, LResources;
|
|
|
|
type
|
|
TformScanning = class(TForm)
|
|
private
|
|
{ Private declarations }
|
|
|
|
|
|
public
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
var
|
|
formScanning: TformScanning;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
initialization
|
|
{$i formScanningUnit.lrs}
|
|
|
|
end.
|
|
|