AlpacaLibrary/Include/Core/Classes/Ignore.hpp

18 lines
313 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef IGNORE_HPP_INCLUDED
#define IGNORE_HPP_INCLUDED
2018-02-24 12:59:53 +00:00
#include "Nameable.hpp"
2017-12-25 23:49:48 +00:00
#include "../JavaClass/Class.hpp"
2018-02-24 12:59:53 +00:00
class Ignore : public Nameable
2017-12-25 23:49:48 +00:00
{
public:
Ignore();
Ignore(const void* Obj);
Ignore(const Ignore& I);
static Class GetClass();
};
#endif // IGNORE_HPP_INCLUDED