Compare commits
No commits in common. "8a351b03b4564636aff7511aea48c01277c29830" and "88f545867c6f9cf20ec2e04f9d47b233c96f8b27" have entirely different histories.
8a351b03b4
...
88f545867c
|
@ -1,4 +1,3 @@
|
||||||
main.d
|
main.d
|
||||||
title.d
|
|
||||||
obj/*
|
obj/*
|
||||||
Shot-Gun-Pete
|
Shot-Gun-Pete
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
using namespace std;
|
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
#include <iostream>
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
class Title{
|
|
||||||
private:
|
|
||||||
protected:
|
|
||||||
public:
|
|
||||||
void mainTitle();
|
|
||||||
};
|
|
|
@ -1,8 +1,6 @@
|
||||||
#include "include/main.h"
|
#include "include/main.h"
|
||||||
#include "include/title.h"
|
|
||||||
|
|
||||||
int main (){
|
int main (){
|
||||||
Title title;
|
|
||||||
title.mainTitle();
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
#include "include/title.h"
|
|
||||||
|
|
||||||
|
|
||||||
void Title::mainTitle(){
|
|
||||||
|
|
||||||
cout << "This is the title" << endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue