feat: SFML 3.0, music, upscale, faster animations

This commit is contained in:
kuzgoga
2025-11-01 23:02:44 +07:00
parent 33acb24e20
commit 6e1a625102
13 changed files with 381 additions and 0 deletions

19
src/structCandy.hpp Normal file
View File

@@ -0,0 +1,19 @@
#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;
}
};