mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 22:58:36 +00:00
22 lines
298 B
Java
22 lines
298 B
Java
package com.iluwatar.creature;
|
|
|
|
import com.iluwatar.property.Color;
|
|
import com.iluwatar.property.Movement;
|
|
import com.iluwatar.property.Size;
|
|
|
|
/**
|
|
*
|
|
* Creature interface.
|
|
*
|
|
*/
|
|
public interface Creature {
|
|
|
|
String getName();
|
|
|
|
Size getSize();
|
|
|
|
Movement getMovement();
|
|
|
|
Color getColor();
|
|
}
|