blob: cf747c291268f623bc02e97a07394e870a5a8ead (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{ %version=1.1 }
{$mode objfpc}
{ Source provided for Free Pascal Bug Report 2865 }
{ Submitted by "Eric Grange" on 2003-12-30 }
{ e-mail: egrange@glscene.org }
unit tw2865;
interface
uses Classes;
type
TVector = array [0..3] of Single;
TGLUpdateAbleObject = class (TPersistent)
end;
TGLCoordinates = class (TGLUpdateAbleObject)
private
{ Private Declarations }
FCoords : TVector;
published
{ Published Declarations }
property X : Single index 0 read FCoords[0];
end;
implementation
end.
|