From Clomosy Docs
TclGameForm is a customized game form design for Clomosy. Here you can use features such as animation and sound effects. Now, to create the form, it is necessary to define.
MyGameForm:TclGameForm;
Now we need to add and run the form before giving properties to the form.
begin MyGameForm := TclGameForm.Create(Self); ... MyGameForm.Run; End;