GraphicsApp API
Eine überarbeitete und angepasste Variante der originalen GraphicsApp-Umgebung
Background.java
gehe zur Dokumentation dieser Datei
1package de.ur.mi.oop.graphics;
2
3/**
4 * Hintergrund-Objekt für die GraphicsApp
5 */
6public class Background extends Rectangle {
7
8 public Background(int width, int height) {
9 super(0, 0, width, height);
11 }
12
13}
Background(int width, int height)
Definition: Background.java:8