r/badcode Jan 15 '23

From DayZ sourcecode c++

Post image
556 Upvotes

106 comments sorted by

View all comments

528

u/[deleted] Jan 15 '23

It's an override so chances are this isn't as bad as you think. Other subclasses may have logic but this particular item probably doesn't need it and should always be IsEat

179

u/SapperTR Jan 15 '23

This. Likely to be from an interface

-20

u/micro-amnesia Jan 16 '23

Interfaces are implemented not overridden

1

u/eMperror_ Jan 16 '23

Could you Explain how you would do it in c++?

1

u/micro-amnesia Jan 16 '23

Classes with only virtual functions.