this post was submitted on 28 Mar 2024
2 points (100.0% liked)

Programmer Humor

31997 readers
600 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] warlaan@lemm.ee 0 points 5 months ago* (last edited 5 months ago) (1 children)

The real naming fail is calling the class "GameManager", still my number one pet peeve. With a class name as vague as that you would have to add tons of information into the variable name. (Also the class name begs for unorganized code. I mean name one function or variable that you could not justify putting into the "GameManager" class. After all if it's managing the game it could justifiably perform any process in the game and access any state in it.)

Once you put the first bool into a class with a name like AccessibilitySettings, calling it something like HighContrast is completely sufficient.

[โ€“] Dragster39@feddit.de 0 points 5 months ago

With a class name as vague as that you would have to add tons of information into the variable name.

Technically they did exactly that.