Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/game/interfaces/StarNametagEntity.hpp
blob: b23660994f319b3733df9f3773539d921d0cc74d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "StarEntity.hpp"

namespace Star {

STAR_CLASS(NametagEntity);

class NametagEntity : public virtual Entity {
public:
  virtual String nametag() const = 0;
  virtual Maybe<String> statusText() const = 0;
  virtual bool displayNametag() const = 0;
  virtual Vec3B nametagColor() const = 0;
  virtual Vec2F nametagOrigin() const = 0;
};

}