mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-18 17:26:44 +00:00
11 lines
161 B
Java
11 lines
161 B
Java
package com.iluwatar;
|
|
|
|
public class ElfCastle implements Castle {
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "This is the Elven castle!";
|
|
}
|
|
|
|
}
|