Exemplo n.º 1
0
        public static GomObject GetObject(ulong id)
        {
            GomObject result = Get <GomObject>(id);

            if (result != null)
            {
                result.Load();
            }
            return(result);
        }
Exemplo n.º 2
0
        public static GomObject GetObject(string name)
        {
            GomObject result = Get <GomObject>(name);

            if (result != null)
            {
                result.Load();
            }
            return(result);
        }