Pioneer
Loading...
Searching...
No Matches
PropertiedObject.h
Go to the documentation of this file.
1// Copyright © 2008-2023 Pioneer Developers. See AUTHORS.txt for details
2// Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
3
4#ifndef PROPERTIEDOBJECT_H
5#define PROPERTIEDOBJECT_H
6
7#include "core/Property.h"
8
9class LuaManager;
10
12public:
13 PropertyMap &Properties() { return m_properties; }
14 const PropertyMap &Properties() const { return m_properties; }
15
16private:
17 PropertyMap m_properties;
18};
19
20#endif
Definition LuaManager.h:9
Definition PropertiedObject.h:11
PropertyMap & Properties()
Definition PropertiedObject.h:13
const PropertyMap & Properties() const
Definition PropertiedObject.h:14
Definition Property.h:171