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