diff --git a/src/lib.cpp b/src/lib.cpp index 5615e42..75f8cf9 100644 --- a/src/lib.cpp +++ b/src/lib.cpp @@ -2,10 +2,9 @@ #include "prep/prep.hh" -#include - void run() { - std::cout << add(2, 2) << std::endl; + Room room1(1, "Room 1", 1710087364, RoomStatus::IN_PROGRESS); + Room room2(2, "Room 2", 1710087384, RoomStatus::ENDED); } int functionToTest(int a) { diff --git a/src/main_lib.cpp b/src/main_lib.cpp deleted file mode 100644 index c27d9eb..0000000 --- a/src/main_lib.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include "main_lib.h" -#include "Prep.h" - -void run() { - Room room1(1, "Room 1", 1710087364, RoomStatus::IN_PROGRESS); - Room room2(2, "Room 2", 1710087384, RoomStatus::ENDED); -} - -int functionToTest(int a) { return a * 2; }