AlpacaLibrary/Include/Core/Classes/Friend.hpp

19 lines
332 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef FRIEND_HPP_INCLUDED
#define FRIEND_HPP_INCLUDED
2018-02-24 12:59:53 +00:00
#include "Talkable.hpp"
2017-12-25 23:49:48 +00:00
#include "../JavaClass/Class.hpp"
#include <cstdint>
2018-02-24 12:59:53 +00:00
class Friend : public Talkable
2017-12-25 23:49:48 +00:00
{
public:
Friend();
Friend(const void* Obj);
Friend(const Friend& F);
static Class GetClass();
};
#endif // FRIEND_HPP_INCLUDED