BsScriptPARTICLE_SPHERE_SHAPE_DESC.generated.h 594 B

123456789101112131415161718192021
  1. #pragma once
  2. #include "BsScriptEnginePrerequisites.h"
  3. #include "BsScriptObject.h"
  4. #include "../../../bsf/Source/Foundation/bsfCore/Particles/BsParticleEmitter.h"
  5. namespace bs
  6. {
  7. class BS_SCR_BE_EXPORT ScriptPARTICLE_SPHERE_SHAPE_DESC : public ScriptObject<ScriptPARTICLE_SPHERE_SHAPE_DESC>
  8. {
  9. public:
  10. SCRIPT_OBJ(ENGINE_ASSEMBLY, "BansheeEngine", "ParticleSphereShapeOptions")
  11. static MonoObject* box(const PARTICLE_SPHERE_SHAPE_DESC& value);
  12. static PARTICLE_SPHERE_SHAPE_DESC unbox(MonoObject* value);
  13. private:
  14. ScriptPARTICLE_SPHERE_SHAPE_DESC(MonoObject* managedInstance);
  15. };
  16. }