lunduniversity / introprog-scalalib

Scala library with simple-to-use utilites for students of introductory programming. http://cs.lth.se/pgk/api
BSD 2-Clause "Simplified" License
60 stars 14 forks source link

Composition over inheritance in Snake Lab #43

Open dixine55 opened 11 months ago

dixine55 commented 11 months ago

It might be better if we instead used composition for the BlockWindow instance in order to just provide the API and not the rest of the BlockWindow code during the SnakeLab.

This would also follow the "Composition over inheritance"-mentality and make it a bit more straightforward for the people working with the code.

bjornregnell commented 11 months ago

Good idea!