2018-03-17 17:58:30 +03:00
|
|
|
/*
|
|
|
|
|
* ObjectInstance.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
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <vcmi/HeroClass.h>
|
|
|
|
|
|
|
|
|
|
#include "../LuaWrapper.h"
|
|
|
|
|
|
|
|
|
|
#include "../../../lib/mapObjects/CObjectHandler.h"
|
|
|
|
|
|
|
|
|
|
namespace scripting
|
|
|
|
|
{
|
|
|
|
|
namespace api
|
|
|
|
|
{
|
|
|
|
|
|
2021-02-15 17:16:41 +03:00
|
|
|
class ObjectInstanceProxy : public OpaqueWrapper<const CGObjectInstance, ObjectInstanceProxy>
|
2018-03-17 17:58:30 +03:00
|
|
|
{
|
|
|
|
|
public:
|
2021-02-15 17:16:41 +03:00
|
|
|
using Wrapper = OpaqueWrapper<const CGObjectInstance, ObjectInstanceProxy>;
|
2018-03-17 17:58:30 +03:00
|
|
|
static const std::vector<typename Wrapper::CustomRegType> REGISTER_CUSTOM;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|