using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace BansheeEngine { /** @addtogroup Physics * @{ */ /// Flag that controls slider joint's behaviour. public enum SliderJointFlag { /// Enables the linear range limit. Limit = 1 } /** @} */ }