﻿		#region Method #{MethodName}

		[DllImport("MyGUI_Export", CallingConvention = CallingConvention.Cdecl)]
		private static extern void Export#{ThisName}_#{MethodName}#{ValueName1}( IntPtr _native ,
			#{MarshalAs1} #{TypePrefix1} #{MarshalTypeName1} #{ValueName1} );

		public void #{MethodName}(
			#{TypeName1} #{ValueName1} )
		{
			Export#{ThisName}_#{MethodName}#{ValueName1}( mNative , 
				#{TypePrefix1} #{ValueName1} );
		}

		#endregion
