I guess I'm just thinking that the ratio of usefulness to overhead is surprisingly high compared to the average kludge. The ability to define and encapsulate rules for movement, the tracking of the position, the relationship to scroll margins, and the ability to activate and de-activate are all useful and are all provided by sprites. It might even be handy to be able to make it visible for debugging purposes. And the ability to dynamically create sprites could probably get around the issue of having to put one on every map. The player sprite could dynamically create a scroller. Sure, it's not a conventional sprite, and doesn't really fall into the definition of sprite, but in the end, "Sprite" is just a class containing a bunch of code, and it turns out that the code does everything necessary without much more overhead (if any) than the average use of the sprite class (for defining conventional sprites). I say "if any" because I think you can define a sprite without any frames (just one state-less frame), and then it doesn't do any drawing or allocate any space for the sprite's graphics. I'm not sure that's true, but maybe I should make it possible if it isn't

. (I know you can define a sprite without frames in its states, but I don't know what happens when you try to compile and use such a sprite). I know you can define tiles without any frames, I'm just not sure about sprite states.