Dzielenie projektu na kilka plików w Visual Studio 2022
Ostatnio zmodyfikowano 2024-02-08 22:43
tBane Temat założony przez niniejszego użytkownika |
Dzielenie projektu na kilka plików w Visual Studio 2022 » 2024-02-08 22:43:24 Za każdym razem inkludujemy pliki nagłówkowe *.hppmain.cpp#include "entity.hpp" using namespace std;
int main() { return 0; }
entity.hpp#ifndef entity_hpp #define entity_hpp using namespace std;
class entity { public: entity(); ~entity(); };
#endif
entity.cpp#include "entity.hpp" using namespace std;
entity::entity( string name, float x, float y ) { }
entity::~entity() { }
|
|
« 1 » |