static extern void AnimatedMeshSceneNode_SetAnimationEndCallback(IntPtr node, NativeAnimationEndDelegate callback);
 public AnimatedMeshSceneNode(IntPtr raw)
     : base(raw)
 {
     MainEventDelegate = OnNativeAnimationEnd;
     AnimatedMeshSceneNode_SetAnimationEndCallback(_raw, MainEventDelegate);
 }