Introduction to OOP Chapter 7: A Billiards Game: next previous audio real text

Objects must be initialized


constructor TWall.create
	(ix, iy, iw, ih : Integer; cf : Real; ilink : Twall);
begin
	x := ix;
	y := iy;
	height := ih;
	width := iw;
	convertFactor := cf;
	link := ilink;
end;
Intro OOP, Chapter 7, Slide 4