FurShaderD.dpr 247 B

12345678910111213141516
  1. (*
  2. Thor's fur coat rotation created by Trinix
  3. *)
  4. program FurShaderD;
  5. uses
  6. Forms,
  7. fFurShaderD in 'fFurShaderD.pas' {FormFur};
  8. {$R *.res}
  9. begin
  10. Application.Initialize;
  11. Application.CreateForm(TFormFur, FormFur);
  12. Application.Run;
  13. end.