1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-11 03:45:06 -05:00
Simba/Units/MMLCore/files.pas

34 lines
381 B
ObjectPascal
Raw Normal View History

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.