mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 14:53:56 -07:00
22 lines
464 B
C
Executable file
22 lines
464 B
C
Executable file
//-----------------------------------------------------------
|
|
//
|
|
// Name: Color.h
|
|
// Last Update: 25/11/03
|
|
// Author: Rich Cross
|
|
// Contact: rich@0ad.wildfiregames.com
|
|
//
|
|
// Description: Definitions for 3 and 4 component floating
|
|
// point colors
|
|
//
|
|
//-----------------------------------------------------------
|
|
|
|
#ifndef _COLOR_H
|
|
#define _COLOR_H
|
|
|
|
#include "Vector3D.h"
|
|
#include "Vector4D.h"
|
|
|
|
typedef CVector3D RGBColor;
|
|
typedef CVector4D RGBAColor;
|
|
|
|
#endif
|