I'm talking about SRB2's source:
So imagine if C was capable of classes (I know C++ is.) You know how a lot of SRB2's source files and functions are prefixed and the related functions all go under that same prefix? Do you think the source would have been better organized and used through classes (like "M::DrawMenuTitle()"), or is it really better off used classless as it is now (regular "M_DrawMenuTitle()")?
I ask because I'm wondering if organization is a valid use for classes. Is it better to use classes, or to divide functions only through files so that their scope is sort of "global"?
So imagine if C was capable of classes (I know C++ is.) You know how a lot of SRB2's source files and functions are prefixed and the related functions all go under that same prefix? Do you think the source would have been better organized and used through classes (like "M::DrawMenuTitle()"), or is it really better off used classless as it is now (regular "M_DrawMenuTitle()")?
I ask because I'm wondering if organization is a valid use for classes. Is it better to use classes, or to divide functions only through files so that their scope is sort of "global"?