rename from .h to .hpp

This commit is contained in:
lucaspalomodevelop 2023-10-07 15:04:46 +02:00
parent 37786bc860
commit 807d7b9ff5
5 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#include "./main.h"
#include "./main.hpp"
int main(int argc, char *argv[])
{

View File

@ -1,7 +1,7 @@
#include <iostream>
#include "./setup.h"
#include "./command.h"
#include "./commands.h"
#include "./setup.hpp"
#include "./command.hpp"
#include "./commands.hpp"
Setup &setup = Setup::Instance();
Command &command = Command::Instance();