Build error how to fix it :
![]()
Build error how to fix it :
![]()
Unresolved External Symbols are caused by functions being declared;
int Add(int x,int y);
but not defined;
int Add(int x,in y)
{
return x + y;
}
Make sure your function is both declared and defined.
Thx for this,
Always glad to be of assistance.