summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/java/org/bukkit/entity/SpectralArrow.java21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/main/java/org/bukkit/entity/SpectralArrow.java b/src/main/java/org/bukkit/entity/SpectralArrow.java
index 58f05128..1a32341c 100644
--- a/src/main/java/org/bukkit/entity/SpectralArrow.java
+++ b/src/main/java/org/bukkit/entity/SpectralArrow.java
@@ -1,3 +1,22 @@
package org.bukkit.entity;
-public interface SpectralArrow extends Arrow {}
+/**
+ * Represents a spectral arrow.
+ */
+public interface SpectralArrow extends Arrow {
+
+ /**
+ * Returns the amount of time that this arrow will apply
+ * the glowing effect for.
+ *
+ * @return the glowing effect ticks
+ */
+ int getGlowingTicks();
+
+ /**
+ * Sets the amount of time to apply the glowing effect for.
+ *
+ * @param duration the glowing effect ticks
+ */
+ void setGlowingTicks(int duration);
+}