das mit dem Property war mir neu.
Ok also für meinen Fall würde ich sowas sagen wie
Delphi-Quellcode:
TFeld = class
property KlotzA:TKlotz;
...
property KlotzH:TKlotz;
function PasstSenktrechtInsFeld(Klotz:TKlotz):Boolean;
function PasstWaagerechtInsFeld(Klotz:TKlotz):Boolean;
end;
TKlotz=class
private
Anordnung: array [1..2,1..5] of integer;
end;
oder so ähnlich..?