1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-14 13:25:14 -05:00
Simba/Projects/SAMufasaGUI/extensionmanager.pas
2010-03-15 23:42:39 +01:00

25 lines
279 B
ObjectPascal

unit extensionmanager;
{$mode objfpc}
interface
uses
Classes, SysUtils;
type
(**
TExtensionManager holds a list of VirtualExtensions, and
has functions to easily handle hooks.
*)
TExtensionManager = class(TObject)
end;
implementation
end.