Added clear screen to the main before its starts.

This commit is contained in:
Justin 2025-05-11 10:27:25 -05:00
parent 1673e995a6
commit b7ad0fbb6c
2 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
#include <iostream> #include <iostream>
#include "intro.h" #include "intro.h"
#include "title.h" #include "title.h"
#include <cstdlib>
using namespace std; using namespace std;

View File

@ -1,6 +1,7 @@
#include "include/main.h" #include "include/main.h"
int main (){ int main (){
system("clear");
Title title; Title title;
title.mainTitle(); title.mainTitle();
Intro intro; Intro intro;