snake error LNK2019: unresolved external symbol "void __cdecl items(class std::vector<int,class std::allocator<int> > &,class std::vector<int,class std::allocator<int> > &,int &,int * const,int * const,int &,int,int,int &)" (?items@@YAXAAV?$vector@HV?$allocator@H@std@@@std@@0AAHQAH21HH1@Z) referenced in function "void __cdecl Update(int &,int * const,int * const,int * const,int * const,int &,int &)" (?Update@@YAXAAHQAH11100@Z)
snake fatal error LNK1120: 1 unresolved externals
items
? The linker is saying it's called from Update
, but it can't find it. You must have the prototype available or the compile of Update
would have failed.