Skip to content

Commit 0141ef7

Browse files
committed
AgeableWaterCreature
1 parent 30055c2 commit 0141ef7

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/main/java/org/spongepowered/api/entity/living/aquatic/Dolphin.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@
2626

2727
import org.spongepowered.api.data.Keys;
2828
import org.spongepowered.api.data.value.Value;
29+
import org.spongepowered.api.entity.Ageable;
2930

3031
/**
3132
* Represents a Dolphin
3233
*/
33-
public interface Dolphin extends Aquatic {
34+
public interface Dolphin extends Aquatic, Ageable {
3435

3536
/**
3637
* {@link Keys#SKIN_MOISTURE}

src/main/java/org/spongepowered/api/entity/living/aquatic/Squid.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@
2424
*/
2525
package org.spongepowered.api.entity.living.aquatic;
2626

27+
import org.spongepowered.api.entity.Ageable;
28+
2729
/**
2830
* Represents a Squid.
2931
*/
30-
public interface Squid extends Aquatic {
32+
public interface Squid extends Aquatic, Ageable {
3133

3234
}

0 commit comments

Comments
 (0)