DefinedClassesSceneKit.pas 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {$mode delphi}
  2. {$modeswitch objectivec1}
  3. {$modeswitch cvar}
  4. {$packrecords c}
  5. {$IFNDEF FPC_DOTTEDUNITS}
  6. unit DefinedClassesSceneKit;
  7. {$ENDIF FPC_DOTTEDUNITS}
  8. interface
  9. type
  10. SCNAction = objcclass external;
  11. SCNAnimationEvent = objcclass external;
  12. SCNBox = objcclass external;
  13. SCNCamera = objcclass external;
  14. SCNCapsule = objcclass external;
  15. SCNCone = objcclass external;
  16. SCNConstraint = objcclass external;
  17. SCNCylinder = objcclass external;
  18. SCNFloor = objcclass external;
  19. SCNGeometry = objcclass external;
  20. SCNGeometryElement = objcclass external;
  21. SCNGeometrySource = objcclass external;
  22. SCNHitTestResult = objcclass external;
  23. SCNIKConstraint = objcclass external;
  24. SCNLayer = objcclass external;
  25. SCNLevelOfDetail = objcclass external;
  26. SCNLight = objcclass external;
  27. SCNLookAtConstraint = objcclass external;
  28. SCNMaterial = objcclass external;
  29. SCNMaterialProperty = objcclass external;
  30. SCNMorpher = objcclass external;
  31. SCNNode = objcclass external;
  32. SCNParticlePropertyController = objcclass external;
  33. SCNParticleSystem = objcclass external;
  34. SCNPhysicsBallSocketJoint = objcclass external;
  35. SCNPhysicsBehavior = objcclass external;
  36. SCNPhysicsBody = objcclass external;
  37. SCNPhysicsContact = objcclass external;
  38. SCNPhysicsField = objcclass external;
  39. SCNPhysicsHingeJoint = objcclass external;
  40. SCNPhysicsShape = objcclass external;
  41. SCNPhysicsSliderJoint = objcclass external;
  42. SCNPhysicsVehicle = objcclass external;
  43. SCNPhysicsVehicleWheel = objcclass external;
  44. SCNPhysicsWorld = objcclass external;
  45. SCNPlane = objcclass external;
  46. SCNProgram = objcclass external;
  47. SCNPyramid = objcclass external;
  48. SCNRenderer = objcclass external;
  49. SCNScene = objcclass external;
  50. SCNSceneSource = objcclass external;
  51. SCNShape = objcclass external;
  52. SCNSkinner = objcclass external;
  53. SCNSphere = objcclass external;
  54. SCNTechnique = objcclass external;
  55. SCNText = objcclass external;
  56. SCNTorus = objcclass external;
  57. SCNTransaction = objcclass external;
  58. SCNTransformConstraint = objcclass external;
  59. SCNTube = objcclass external;
  60. SCNView = objcclass external;
  61. SCNActionableProtocol = objcprotocol external name 'SCNActionable';
  62. SCNAnimatableProtocol = objcprotocol external name 'SCNAnimatable';
  63. SCNBoundingVolumeProtocol = objcprotocol external name 'SCNBoundingVolume';
  64. SCNNodeRendererDelegateProtocol = objcprotocol external name 'SCNNodeRendererDelegate';
  65. SCNPhysicsContactDelegateProtocol = objcprotocol external name 'SCNPhysicsContactDelegate';
  66. SCNProgramDelegateProtocol = objcprotocol external name 'SCNProgramDelegate';
  67. SCNSceneExportDelegateProtocol = objcprotocol external name 'SCNSceneExportDelegate';
  68. SCNSceneRendererDelegateProtocol = objcprotocol external name 'SCNSceneRendererDelegate';
  69. SCNSceneRendererProtocol = objcprotocol external name 'SCNSceneRenderer';
  70. SCNShadableProtocol = objcprotocol external name 'SCNShadable';
  71. SCNTechniqueSupportProtocol = objcprotocol external name 'SCNTechniqueSupport';
  72. type
  73. SKScene = objcclass external;
  74. implementation
  75. end.