Twinklebear / LPCGame

Working on a C++ tile based 'engine' using SDL
MIT License
18 stars 1 forks source link

Image Clips Array Should be a Vector #12

Closed Twinklebear closed 11 years ago

Twinklebear commented 11 years ago

The Image class currently uses a dynamically allocated array to store the list of clips, it'd be better if it was a vector.

btstevens89 commented 11 years ago

Why a vector? The current method works and is smaller. Is there something else needed from it?

Twinklebear commented 11 years ago

I thought it'd be nice to have some of the C++ extras that came with it, but the dynamic array does work fine. This was more of a minor thing. I think I'll take it off the list while we work on more important stuff