using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace BansheeEngine
{
/** @addtogroup Physics
* @{
*/
/// Flags that control hinge joint options.
public enum HingeJointFlag
{
/// Joint limit is enabled.
Limit = 1,
/// Joint drive is enabled.
Drive = 2
}
/** @} */
}