aboutsummaryrefslogtreecommitdiff
path: root/backend/Object.h
blob: 789de25f70bfd7d681ea8c0e020acf7a045f8726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

class Object {
private:
	const char * name = nullptr;
	const char * description = nullptr;

protected:
	Object() = default;
	virtual ~Object();
	friend class ObjectFactory;

};