Skip to content

Commit

Permalink
Add docs to new expression
Browse files Browse the repository at this point in the history
  • Loading branch information
APickledWalrus committed Mar 6, 2021
1 parent 25458b5 commit 5626da5
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
package io.github.apickledwalrus.skriptgui.elements.expressions;

import ch.njol.skript.Skript;
import ch.njol.skript.doc.Description;
import ch.njol.skript.doc.Examples;
import ch.njol.skript.doc.Name;
import ch.njol.skript.doc.Since;
import ch.njol.skript.lang.Expression;
import ch.njol.skript.lang.ExpressionType;
import ch.njol.skript.lang.SkriptParser.ParseResult;
Expand All @@ -10,6 +14,14 @@
import org.bukkit.event.Event;
import org.eclipse.jdt.annotation.Nullable;

@Name("Global GUI Identifiers")
@Description("A list of the identifiers of all registered global GUIs.")
@Examples({"command /guis:",
"\ttrigger:",
"\t\tloop all of the registered gui identifiers:",
"\t\t\tsend loop-string"
})
@Since("1.2.1")
public class ExprGUIIdentifiers extends SimpleExpression<String> {

static {
Expand Down

0 comments on commit 5626da5

Please sign in to comment.