public static string serialize(DestroyMsgModel destroy_msg)
 {
     return(JsonUtility.ToJson(destroy_msg));
 }
 public static void processMsg(DestroyMsgModel args)
 {
     UnityEngine.Object.Destroy(ObjectManager.getObject(args.owner, args.name).gameObject);
 }