cheat-engine/MenuItemExtra.pas
cheatengine@gmail.com 4d297adfd2
2011-07-04 19:52:19 +00:00

19 lines
365 B
ObjectPascal

unit MenuItemExtra;
{
V1.0: TMenuItemExtra is just a TMenuItem with an extra data pointer, so menu
items can be created on the fly and assigned extra data in the forum of records
or other objects usefull for an onclick handler
}
interface
uses menus;
type TMenuItemExtra=class(TMenuItem)
public
data: pointer;
end;
implementation
end.