mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 18:58:44 +00:00
9 lines
167 B
Java
9 lines
167 B
Java
package com.iluwatar;
|
|
|
|
public class Asteroid extends Meteoroid {
|
|
|
|
public Asteroid(int left, int top, int right, int bottom) {
|
|
super(left, top, right, bottom);
|
|
}
|
|
}
|