10 lines
122 B
ObjectPascal
10 lines
122 B
ObjectPascal
type
|
|
Icell = interface
|
|
property State: integer read write;
|
|
end;
|
|
|
|
Cell = class(Icell)
|
|
end;
|
|
|
|
begin
|
|
end. |