summaryrefslogtreecommitdiff
path: root/src/intro_content.hpp
blob: c9e498c0b10aac4560029d6dc262d845cb580ec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef INTRO_CONTENT_HPP
#define INTRO_CONTENT_HPP

#include "master_content.hpp"

namespace content {

struct intro : public master {
	public:
		intro( ) : master( ) {}
};

}

#endif