29 lines
385 B
C
29 lines
385 B
C
#ifndef LETTER_H
|
|
#define LETTER_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
|
|
#include <SDL.h>
|
|
#include "sdlhelpers.h"
|
|
#include "utils.h"
|
|
|
|
struct Letter
|
|
{
|
|
SDL_Rect rect;
|
|
|
|
// Grid background color
|
|
SDL_Color backgroundColor;
|
|
|
|
// Grid border thickness and color
|
|
unsigned int border;
|
|
SDL_Color borderColor;
|
|
|
|
int isFromPreviousMove;
|
|
|
|
int letterIndex;
|
|
|
|
};
|
|
|
|
#endif // LETTER_H
|