1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-28 08:48:48 +02:00
vcmi/lib/spells/ViewSpellInt.h

40 lines
703 B
C++
Raw Normal View History

/*
* ViewSpellInt.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
2015-02-26 19:59:18 +02:00
2024-03-29 07:48:52 +02:00
#pragma once
2015-02-26 19:59:18 +02:00
2024-03-29 07:48:52 +02:00
#include "../int3.h"
#include "../GameConstants.h"
2015-02-26 19:59:18 +02:00
VCMI_LIB_NAMESPACE_BEGIN
class CGObjectInstance;
2015-02-26 19:59:18 +02:00
struct DLL_LINKAGE ObjectPosInfo
{
2015-02-26 19:59:18 +02:00
int3 pos;
Obj id = Obj::NO_OBJ;
si32 subId = -1;
PlayerColor owner = PlayerColor::CANNOT_DETERMINE;
ObjectPosInfo() = default;
ObjectPosInfo(const CGObjectInstance * obj);
2015-02-26 19:59:18 +02:00
template <typename Handler> void serialize(Handler & h)
{
h & pos;
h & id;
h & subId;
h & owner;
2015-02-26 19:59:18 +02:00
}
};
VCMI_LIB_NAMESPACE_END