TreeD.dpr 408 B

1234567891011121314151617181920
  1. {:
  2. History:
  3. 13/01/07 - Da Stranger - Added a FPS counter
  4. 30/11/06 - Tim "Sivael" Kapuœciñski [[email protected]]
  5. - Added the CenterBranchConstant TrackBar to
  6. use the new functions of TGLTree.
  7. }
  8. program TreeD;
  9. uses
  10. Forms,
  11. fTreeD in 'fTreeD.pas' {FormTree};
  12. {$R *.res}
  13. begin
  14. Application.Initialize;
  15. Application.CreateForm(TFormTree, FormTree);
  16. Application.Run;
  17. end.