diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-02-10 02:22:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-02-11 04:28:43 +0300 |
commit | 29181589eb79d3afdf337e2517b4fa43d8bbdd59 (patch) | |
tree | 14a15938cf0f5fe8fe297798b9779f2e6b1df9da /src/being | |
parent | 219afd10cf1dc8f7e75273706c2de3a06305e637 (diff) | |
download | plus-29181589eb79d3afdf337e2517b4fa43d8bbdd59.tar.gz plus-29181589eb79d3afdf337e2517b4fa43d8bbdd59.tar.bz2 plus-29181589eb79d3afdf337e2517b4fa43d8bbdd59.tar.xz plus-29181589eb79d3afdf337e2517b4fa43d8bbdd59.zip |
Rename clanInfo into localClan.
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 |