static int SetMusicVolume(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         WCG.MediaMgr obj  = (WCG.MediaMgr)ToLua.CheckObject <WCG.MediaMgr>(L, 1);
         float        arg0 = (float)LuaDLL.luaL_checknumber(L, 2);
         obj.SetMusicVolume(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }