summaryrefslogtreecommitdiffstats
path: root/port/AssimpDelphi/aiColor4D.pas
blob: 0bc5d2a6b0005cb849013b23ee087a8465d5a853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
unit aiColor4D;

interface

const AI_MAX_NUMBER_OF_COLOR_SETS = $04;

type TaiColor4D = packed record
   r, g, b, a: single;
end;
type PaiColor4D = ^TaiColor4D;

type TaiColor4DArray = array[0..0] of TaiColor4D;
type PTaiColor4DArray = ^TaiColor4DArray;

implementation

end.