Toggle navigation
ivorium
iv_components
Example project
GitHub
Main Page
Modules
Classes
Files
File List
iv_components
Ability
Ability.cpp
Go to the documentation of this file.
1
#include "
Ability.hpp
"
2
3
namespace
comp
4
{
5
6
Ability::Ability
(
iv::Instance
* inst ) :
7
cm( inst, this,
"Ability"
),
8
cooldown( &this->cm ),
9
activator( &this->cm )
10
{
11
}
12
13
iv::Instance
*
Ability::instance
()
const
14
{
15
return
this->
cm
.
instance
();
16
}
17
18
}