From Clomosy Docs

Revision as of 08:17, 28 March 2023 by ClomosyManager (talk | contribs) (Created page with "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;")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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;