I have “HighScoreModel”, “HighScoreController”, “HighScoreView”
Everything works between model<->controller but, how do I get the
data to my view?
I have a public model[] in my controller so I can access it from my view. Just wondering if it is the right way to do it.
Generally, the View is an observer of the Model. So when the Model changes, it notifies the View which renders itself accordingly.