Example #1
0
        public int ForeachSubworld(RC.WorldDelegate cb)
        {
            RCSharp.WorldDelegateWrapper cb_wrapper = new RCSharp.WorldDelegateWrapper(cb);
            int raw_ret = rc_world_multi_foreach_subworld(Handle, cb_wrapper.NativeDelegate, IntPtr.Zero);
            int ret     = raw_ret;

            return(ret);
        }
Example #2
0
        public int ForeachSubworldByType(GLib.GType type, RC.WorldDelegate cb)
        {
            RCSharp.WorldDelegateWrapper cb_wrapper = new RCSharp.WorldDelegateWrapper(cb);
            int raw_ret = rc_world_multi_foreach_subworld_by_type(Handle, type.Val, cb_wrapper.NativeDelegate, IntPtr.Zero);
            int ret     = raw_ret;

            return(ret);
        }
Example #3
0
		public int ForeachSubworld(RC.WorldDelegate cb) {
			RCSharp.WorldDelegateWrapper cb_wrapper = new RCSharp.WorldDelegateWrapper (cb);
			int raw_ret = rc_world_multi_foreach_subworld(Handle, cb_wrapper.NativeDelegate, IntPtr.Zero);
			int ret = raw_ret;
			return ret;
		}
Example #4
0
		public int ForeachSubworldByType(GLib.GType type, RC.WorldDelegate cb) {
			RCSharp.WorldDelegateWrapper cb_wrapper = new RCSharp.WorldDelegateWrapper (cb);
			int raw_ret = rc_world_multi_foreach_subworld_by_type(Handle, type.Val, cb_wrapper.NativeDelegate, IntPtr.Zero);
			int ret = raw_ret;
			return ret;
		}