clang-format

This commit is contained in:
2026-04-04 13:03:20 +02:00
parent 6a09d7219d
commit baee62b375
36 changed files with 2576 additions and 2408 deletions

View File

@@ -1,22 +1,17 @@
#pragma once
#include "game/sprite.hpp"
#include "game/prota.hpp"
#include "game/info.hpp"
#include "game/prota.hpp"
#include "game/sprite.hpp"
class Bola : public Sprite {
public:
Bola(JD8_Surface gfx, Prota* sam);
public:
Bola( JD8_Surface gfx, Prota* sam );
void draw();
void update();
protected:
Uint8 contador;
Prota* sam;
void draw();
void update();
protected:
Uint8 contador;
Prota* sam;
};