25 lines
361 B
ObjectPascal
25 lines
361 B
ObjectPascal
unit PlayFormUnit;
|
|
|
|
interface
|
|
|
|
uses
|
|
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
|
|
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs;
|
|
|
|
type
|
|
TPlayForm = class(TForm)
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
PlayForm: TPlayForm;
|
|
|
|
implementation
|
|
|
|
{$R *.fmx}
|
|
|
|
end.
|