mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 03:45:06 -05:00
34 lines
381 B
ObjectPascal
34 lines
381 B
ObjectPascal
|
unit files;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Classes, SysUtils;
|
||
|
|
||
|
type
|
||
|
TMWindow = class(TObject)
|
||
|
constructor Create(Client: TObject);
|
||
|
destructor Destroy; override;
|
||
|
public
|
||
|
|
||
|
|
||
|
end;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
constructor TMWindow.Create(Client: TObject);
|
||
|
begin
|
||
|
inherited Create;
|
||
|
end;
|
||
|
|
||
|
destructor TMWindow.Destroy;
|
||
|
begin
|
||
|
|
||
|
inherited;
|
||
|
end;
|
||
|
|
||
|
end.
|
||
|
|