2018-03-17 17:58:30 +03:00
|
|
|
/*
|
|
|
|
|
* api/Spell.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/spells/Spell.h>
|
|
|
|
|
|
|
|
|
|
#include "../LuaWrapper.h"
|
|
|
|
|
|
2022-08-15 14:38:17 +03:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
|
2018-03-17 17:58:30 +03:00
|
|
|
namespace scripting
|
|
|
|
|
{
|
|
|
|
|
namespace api
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
class SpellProxy : public OpaqueWrapper<const ::spells::Spell, SpellProxy>
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
using Wrapper = OpaqueWrapper<const ::spells::Spell, SpellProxy>;
|
|
|
|
|
static const std::vector<typename Wrapper::CustomRegType> REGISTER_CUSTOM;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-08-15 14:38:17 +03:00
|
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|