using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace BansheeEngine { /** @addtogroup Rendering * @{ */ /// Information about a single probe in the light probe volume. [StructLayout(LayoutKind.Sequential), SerializeObject] public partial struct LightProbeInfo { public uint handle; public Vector3 position; } /** @} */ }