// This file is a part of Framsticks SDK. http://www.framsticks.com/ // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. // See LICENSE.txt for details. #ifndef _GENO_OPERATORS_H_ #define _GENO_OPERATORS_H_ #include #include /** @file */ /** \name Return codes for genetic operators */ //@{ #define GENOPER_OK 0 ///>24) #define GENGETCOLOR(style) ((style)&0x00ffffff) #define GENGET_R(style) ((style)&0xff) #define GENGET_G(style) ((style>>8)&0xff) #define GENGET_B(style) ((style>>16)&0xff) #define GENCOLOR_TEXT GENRGB(0,0,0) ///