This is an old revision of the document!
What is a node struct? A node struct is used to represent an element, in our case, a brick, within a list.
An example of a structure for a node is as follows:
struct BrickNode { bool Active; int X, Y; // Position on screen int Width, Height; // Size of hitbox for brick BrickNode* next; // Pointer to the next brick node };