19 lines
273 B
C++
19 lines
273 B
C++
#pragma once
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
constexpr int tile_size = 80;
|
|
sf::Vector2i offset(320, 40);
|
|
|
|
struct candy
|
|
{
|
|
int x, y;
|
|
int column, row;
|
|
int kind;
|
|
int combination;
|
|
int alpha;
|
|
candy()
|
|
{
|
|
combination = 0;
|
|
alpha = 255;
|
|
}
|
|
}; |