Skip to content

Instantly share code, notes, and snippets.

class Car {
Door leftDoor, rightDoor;
Wheel leftFrontWheel, leftRearWheel, rightFrontWheel, rightRearWheel;
Car() {
Door leftDoor = new Door(true, false);
Door rightDoor
// other constructor things...
rightDoor.open();