Esempio n. 1
0
 public static void Event_Cmd(IntPtr ent_ptr, string cmd)
 {
     Nexus.EventCmd(new G.Entity(ent_ptr), cmd);
 }
Esempio n. 2
0
 public static void Event_Chat(int clinum, string message)
 {
     Nexus.EventChat(new G.Player(clinum), message);
 }
Esempio n. 3
0
 public static void Event_Frame(int time)
 {
     Nexus.EventFrame(time);
 }
Esempio n. 4
0
 public static void Event_Shutdown()
 {
     Nexus.CloseAll();
 }
Esempio n. 5
0
 public static void Close_Manifest(int manifest_id)
 {
     Nexus.CloseNode(manifest_id);
 }
Esempio n. 6
0
        // ================

        public static int Load_Manifest(string manifest)
        {
            return(Nexus.OpenNode(manifest));
        }