Voxellancer  0.3
A game about voxels in space
 All Classes Functions Pages
objectinfo.h
1 #pragma once
2 
3 #include <string>
4 
5 #include <glm/glm.hpp>
6 
7 
8 class ObjectInfo {
9 public:
10  ObjectInfo();
11 
12  std::string name();
13  void setName(const std::string& name);
14 
15  bool showOnHud();
16  void setShowOnHud(bool show);
17 
18  bool canLockOn();
19  void setCanLockOn(bool canLockOn);
20 
21 
22 protected:
23  std::string m_name;
24  bool m_showOnHud;
25  bool m_canLockOn;
26 };
27 
Definition: objectinfo.h:8