We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6164c4a commit b0df6efCopy full SHA for b0df6ef
src/main/java/org/spongepowered/api/entity/Mannequin.java
@@ -24,7 +24,17 @@
24
*/
25
package org.spongepowered.api.entity;
26
27
+import org.spongepowered.api.data.type.HandPreference;
28
+import org.spongepowered.api.data.value.Value;
29
import org.spongepowered.api.entity.living.Humanoid;
30
+import org.spongepowered.api.entity.living.PathfinderAgent;
31
+import org.spongepowered.api.entity.living.RangedAgent;
32
-public interface Mannequin extends Humanoid {
33
+public interface Mannequin extends Humanoid, PathfinderAgent, RangedAgent {
34
+
35
+ // solve multiple inheritance
36
+ @Override
37
+ default Value.Mutable<HandPreference> dominantHand() {
38
+ return Humanoid.super.dominantHand();
39
+ }
40
}
0 commit comments