Ejemplo n.º 1
0
        public static void nk_foreach(nk_context *ctx, nk_foreach_action A)
        {
            nk_command *c = null;

            for (c = nk__begin(ctx); c != null; c = nk__next(ctx, c))
            {
                A(c);
            }
        }
Ejemplo n.º 2
0
 public static nk_command *nk__next(nk_context *context, nk_command *command) => _nk__next(context, command);
Ejemplo n.º 3
0
 public static extern nk_command *nk__next(nk_context *context, nk_command *command);