Ejemplo n.º 1
0
        public int GetObjectType(int id)
        {
            StoredCommands sc  = new StoredCommands();
            uint           key = sc.AppendSceneCommand_GetObjectType(id);

            ExecuteCommands(sc);
            any_result a      = new any_result();
            bool       bFound = sc.GetSceneCommandResult_GetObjectType(key, a);

            return((bFound) ? a.i : -1);
        }