﻿		#region Method #{MethodName}

		[DllImport("MyGUI_Export", CallingConvention = CallingConvention.Cdecl)]
        #{MarshalAsReturn}
		private static extern #{MarshalTypeNameReturn} Export#{ThisName}_#{MethodName}( IntPtr _native );

		public #{TypeName} #{MethodName}( )
		{
			return #{MarshalConvertBefore} Export#{ThisName}_#{MethodName}( mNative ) #{MarshalConvertPost} ;
		}

		#endregion
