12-24-2022, 05:24 PM
My new friend, ChatGPT would say the following to this:
It looks like the object files (UIWindowDeclare.obj, SessionState.obj) that are being linked into the final binary (Engine.dll) are calling functions or using variables that are defined in a class called GuildTaxHistoryUI, but the linker can't find their definitions.
This usually happens when you have declared a function or variable in a class, but have not provided a definition for it. It can also happen if you have declared the function or variable in a header file, but have not included the header file in the source file where the function or variable is used.
To fix this error, you will need to find the definitions for the missing functions or variables and make sure they are included in your project. This might involve adding the appropriate #include statements in your source files, or adding the necessary source files to your project.

