Compare commits

..

No commits in common. "8a351b03b4564636aff7511aea48c01277c29830" and "88f545867c6f9cf20ec2e04f9d47b233c96f8b27" have entirely different histories.

5 changed files with 1 additions and 23 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
main.d
title.d
obj/*
Shot-Gun-Pete

View File

@ -1,2 +1 @@
#include <iostream>
using namespace std;

View File

@ -1,9 +0,0 @@
#include <iostream>
using namespace std;
class Title{
private:
protected:
public:
void mainTitle();
};

View File

@ -1,8 +1,6 @@
#include "include/main.h"
#include "include/title.h"
int main (){
Title title;
title.mainTitle();
return 0;
}

View File

@ -1,9 +0,0 @@
#include "include/title.h"
void Title::mainTitle(){
cout << "This is the title" << endl;
}