Currently the tetromino class has a member blocks which is an std::array, in the current implementation of sticky gravity, many functions have to populate a vector with the members of this array, it may be useful to refactor this member to be a vector and any methods that input a tetromino as a parameter
doing this completely broke the game lol, would require some more extensive rewriting, instead a vector is populated in the placetetromino function and then used for sticky gravity
Currently the tetromino class has a member blocks which is an std::array, in the current implementation of sticky gravity, many functions have to populate a vector with the members of this array, it may be useful to refactor this member to be a vector and any methods that input a tetromino as a parameter