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