13 lines
143 B
C
13 lines
143 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
#define STR_EQUAL 0
|
|
|
|
struct color_argb {
|
|
double a;
|
|
double r;
|
|
double g;
|
|
double b;
|
|
};
|
|
|
|
#endif // COMMON_H
|