#ifndef FUNCTION_H
#define FUNCTION_H

typedef struct {
    char color;
    unsigned int size;
} Floor;

int compare(const void *a, const void *b);

#endif // FUNCTION_H
