BsScriptParticleEmitterSphereShape.generated.h 1.1 KB

12345678910111213141516171819202122232425262728
  1. #pragma once
  2. #include "BsScriptEnginePrerequisites.h"
  3. #include "BsScriptObject.h"
  4. #include "BsScriptParticleEmitterShape.generated.h"
  5. #include "../../../bsf/Source/Foundation/bsfCore/Particles/BsParticleEmitter.h"
  6. namespace bs
  7. {
  8. class ParticleEmitterSphereShape;
  9. class BS_SCR_BE_EXPORT ScriptParticleEmitterSphereShape : public ScriptObject<ScriptParticleEmitterSphereShape, ScriptParticleEmitterShapeBase>
  10. {
  11. public:
  12. SCRIPT_OBJ(ENGINE_ASSEMBLY, "BansheeEngine", "ParticleEmitterSphereShape")
  13. ScriptParticleEmitterSphereShape(MonoObject* managedInstance, const SPtr<ParticleEmitterSphereShape>& value);
  14. SPtr<ParticleEmitterSphereShape> getInternal() const;
  15. static MonoObject* create(const SPtr<ParticleEmitterSphereShape>& value);
  16. private:
  17. static void Internal_setOptions(ScriptParticleEmitterSphereShape* thisPtr, PARTICLE_SPHERE_SHAPE_DESC* options);
  18. static void Internal_getOptions(ScriptParticleEmitterSphereShape* thisPtr, PARTICLE_SPHERE_SHAPE_DESC* __output);
  19. static void Internal_create(MonoObject* managedInstance, PARTICLE_SPHERE_SHAPE_DESC* desc);
  20. static void Internal_create0(MonoObject* managedInstance);
  21. };
  22. }