fix: combine both lib files

This commit is contained in:
Kristofers Solo 2024-03-10 18:32:47 +02:00
parent 9eb1bf48ff
commit 42d1f3b908
2 changed files with 2 additions and 12 deletions

View File

@ -2,10 +2,9 @@
#include "prep/prep.hh" #include "prep/prep.hh"
#include <iostream>
void run() { 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) { int functionToTest(int a) {

View File

@ -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; }