#ifndef COLOURS_H
#define COLOURS_H
namespace fw
{
	struct Colours
	{
		static const D3DXCOLOR Green;
		static const D3DXCOLOR Red;
		static const D3DXCOLOR Yellow;
		static const D3DXCOLOR Blue;
		static const D3DXCOLOR White;
		static const D3DXCOLOR Black;
		static const D3DXCOLOR Purple;
	};
}
#endif