Horribly paraphrased. This conversation was a few years ago:
You designed a particle system using a linked list and all the particle objects have no update() method or any methods at all.
AKA: All the particles are structs, rather than classes.
You have an updater() class that takes the first particle of the linked list and uses it to update all of the particles.
What design pattern is that?