6 lines
162 B
Plaintext
6 lines
162 B
Plaintext
struct PosnC(int x, int y) : Posn { }
|
|
|
|
struct ColorC(int r, int g, int b) : Color { }
|
|
|
|
struct ColorPosnC(Color c) : ColorPosn extends PosnC() : Posn { super(); }
|