ParticleEmitterShape.generated.cs 498 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Particles
  7. * @{
  8. */
  9. /// <summary>
  10. /// Base class from all emitter shapes. Emitter shapes determine the position and direction of newly created particles.
  11. /// </summary>
  12. [ShowInInspector]
  13. public partial class ParticleEmitterShape : ScriptObject
  14. {
  15. private ParticleEmitterShape(bool __dummy0) { }
  16. protected ParticleEmitterShape() { }
  17. }
  18. /** @} */
  19. }