PlayFile.dpr
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. program PlayFile;
  2. uses
  3.   Forms,
  4.   main in 'main.pas' {MainForm},
  5.   PlaneScene in '..AllocatorPlaneScene.pas',
  6.   Allocator in '..AllocatorAllocator.pas';
  7. {$R *.res}
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm(TMainForm, MainForm);
  11.   Application.Run;
  12. end.