Info Dungeons

01/02/2021 16:54 Hikari Kuina#1
Hi everyone. I was adding the system Info Dungeons in my source file but when building I got an errors which
'INFO_DUNGEONS' : undeclared identifier and
'std::vector':'INFO_DUNGEONS' is not valid template type argument for parameter '_Ty'.
Looking into by right clicking and going into the peek definition it says that it really declared into the WndInfoDungeonList.h as a Struct

As I understand the INFO_DUNGEONS struct is being used as a parameters in a function of

And what is odd is that the IDE don't say any problem/errors not until you build it. Here's the image where problem occurs.

01/02/2021 19:10 aqwp#2
User.h on top :

#include "InstanceDungeonBase.h"
01/02/2021 23:54 Hikari Kuina#3
Quote:
Originally Posted by aqwp View Post
User.h on top :

#include "InstanceDungeonBase.h"
It fixed the problem thank you. I was wrong the struct INFO_DUNGEONS was declared in InstanceDungeonBase.h so the header should be InstanceDungeonBase.h.