Project SkyFire Core
SkyFire 5.4.8 server core API documentation
Loading...
Searching...
No Matches
GroupReference.h
Go to the documentation of this file.
1/*
2* This file is part of Project SkyFire https://www.projectskyfire.org.
3* See LICENSE.md file for Copyright information
4*/
5
6#ifndef SF_GROUPREFERENCE_H
7#define SF_GROUPREFERENCE_H
8
10
11class Group;
12class Player;
13
14class GroupReference : public Reference<Group, Player>
15{
16protected:
21public:
26 uint8 getSubGroup() const { return iSubGroup; }
27 void setSubGroup(uint8 pSubGroup) { iSubGroup = pSubGroup; }
28};
29#endif
std::uint8_t uint8
Definition Define.h:79
Definition Group.h:147
void targetObjectDestroyLink()
void setSubGroup(uint8 pSubGroup)
GroupReference * next()
uint8 getSubGroup() const
GroupReference const * next() const
void sourceObjectDestroyLink()
void targetObjectBuildLink()
Reference< TO, FROM > * next()
Definition Reference.h:70