diff options
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/localclan.cpp (renamed from src/being/claninfo.cpp) | 4 | ||||
-rw-r--r-- | src/being/localclan.h (renamed from src/being/claninfo.h) | 14 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/being/claninfo.cpp b/src/being/localclan.cpp index bba4fcd5e..b01c2e85e 100644 --- a/src/being/claninfo.cpp +++ b/src/being/localclan.cpp @@ -18,8 +18,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "being/claninfo.h" +#include "being/localclan.h" #include "debug.h" -ClanInfo clanInfo; +LocalClan localClan; diff --git a/src/being/claninfo.h b/src/being/localclan.h index 307044cb3..e8292136f 100644 --- a/src/being/claninfo.h +++ b/src/being/localclan.h @@ -18,8 +18,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef BEING_CLANINFO_H -#define BEING_CLANINFO_H +#ifndef BEING_LOCALCLAN_H +#define BEING_LOCALCLAN_H #include "enums/simpletypes/beingid.h" @@ -29,9 +29,9 @@ #include "localconsts.h" -struct ClanInfo final +struct LocalClan final { - ClanInfo() : + LocalClan() : allyClans(), antagonistClans(), name(), @@ -43,7 +43,7 @@ struct ClanInfo final { } - A_DELETE_COPY(ClanInfo) + A_DELETE_COPY(LocalClan) void clear() { @@ -67,6 +67,6 @@ struct ClanInfo final int totalMembers; }; -extern ClanInfo clanInfo; +extern LocalClan localClan; -#endif // BEING_CLANINFO_H +#endif // BEING_LOCALCLAN_H |