Letzt Frage (wirklich!
):
Wie kann ich jetzt auf Variablen im Array zugreifen, ich meine:
Delphi-Quellcode:
TCreature = class
private
FName: string;
public
end;
constructor TSand.Create;
begin
inherited Create;
FName := 'Sand';
end;
// ---------------------------------
for i := 0 to FBlockNumX - 1 do
for j := 0 to FBlockNumY - 1 do
begin
FBufferArray[i][j] := TSand.Create;
FWorldArray[i][j] := TSand.Create;
end;
// ---------------------------------
// Undeclared indetifier!
if FWorldArray[i][j].FName := 'Sand' then ...;
Wo liegt der Fehler?