Modifica di update() per gestire moltiplicatore tempo

This commit is contained in:
2026-06-22 12:16:32 +02:00
parent f05db110ff
commit c6094c6a44
18 changed files with 35 additions and 25 deletions
@@ -13,7 +13,7 @@ struct collection{
class CollectionInterface{
public:
virtual collection create(ReferencePlane plane) = 0;
virtual void update(sf::Clock cl) = 0;
virtual void update(sf::Clock cl, float multiplier) = 0;
virtual bool setTransparency(float alpha) = 0;
virtual ~CollectionInterface(){};
};