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

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