PARTICLE_RECT_SHAPE_DESC.generated.cs 435 B

1234567891011121314151617181920
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Particles
  7. * @{
  8. */
  9. /// <summary>Information describing a ParticleEmitterRectShape.</summary>
  10. [StructLayout(LayoutKind.Sequential), SerializeObject]
  11. public partial struct ParticleRectShapeOptions
  12. {
  13. /// <summary>Extents of the rectangle.</summary>
  14. public Vector2 extents;
  15. }
  16. /** @} */
  17. }