mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 04:59:24 +00:00
9 lines
187 B
Java
9 lines
187 B
Java
package com.iluwatar;
|
|
|
|
public class SpaceStationIss extends SpaceStationMir {
|
|
|
|
public SpaceStationIss(int left, int top, int right, int bottom) {
|
|
super(left, top, right, bottom);
|
|
}
|
|
}
|