summaryrefslogtreecommitdiff
path: root/src/being/being.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/being/being.h')
-rw-r--r--src/being/being.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/being/being.h b/src/being/being.h
index ebce57c41..521a554cf 100644
--- a/src/being/being.h
+++ b/src/being/being.h
@@ -925,6 +925,11 @@ class Being notfinal : public ActorSprite,
void setAreaSize(const int areaSize)
{ mAreaSize = areaSize; }
+ void setTeamId(const uint16_t teamId);
+
+ uint16_t getTeamId() const
+ { return mTeamId; }
+
protected:
/**
* Updates name's location.
@@ -941,6 +946,8 @@ class Being notfinal : public ActorSprite,
void createSpeechBubble();
+ void setDefaultNameColor(const UserColorIdT defaultColor);
+
static int getDefaultEffectId(const AttackTypeT &type);
BeingInfo *mInfo;
@@ -1105,6 +1112,7 @@ class Being notfinal : public ActorSprite,
int mKarma;
int mManner;
int mAreaSize;
+ uint16_t mTeamId;
uint16_t mLook;
unsigned char mHairColor;
bool mErased;