I'm just getting started with Visual C++ but I've run into a brick wall. I'm trying to make a new class, so I right-click on my project, Add|Class, C++ class, and call it "piece". This creates "piece.h" and "piece.cpp". So far so good. When I try to include "piece.h" in my main.cpp file however, when I compile I get
fatal error C1083: Cannot open include file: 'piece.h': No such file or directory
Can anyone tell me what I'm doing wrong please?