This is an old revision of the document!
A structure is an always-public class. For this project, we'll be using one to group together the code we need for our Breakout brick.
Format the code similarly to a class:
struct Brick { int positionX; int positionY; ... };
Remember that for structures, a semicolon is needed after the closing curly brace. You'll get an error otherwise.