Skip to content

Commit

Permalink
AgeableWaterCreature
Browse files Browse the repository at this point in the history
  • Loading branch information
Faithcaio committed Aug 27, 2024
1 parent 30055c2 commit 0141ef7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@

import org.spongepowered.api.data.Keys;
import org.spongepowered.api.data.value.Value;
import org.spongepowered.api.entity.Ageable;

/**
* Represents a Dolphin
*/
public interface Dolphin extends Aquatic {
public interface Dolphin extends Aquatic, Ageable {

/**
* {@link Keys#SKIN_MOISTURE}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@
*/
package org.spongepowered.api.entity.living.aquatic;

import org.spongepowered.api.entity.Ageable;

/**
* Represents a Squid.
*/
public interface Squid extends Aquatic {
public interface Squid extends Aquatic, Ageable {

}

0 comments on commit 0141ef7

Please sign in to comment.