L2Bot2.0/L2BotCore/Domain/Entities/Hashable.h
2023-10-16 00:03:43 +04:00

15 lines
209 B
C++

#pragma once
#include <string>
namespace L2Bot::Domain::Entities
{
class Hashable
{
public:
virtual const std::size_t GetHash() const = 0;
Hashable() = default;
virtual ~Hashable() = default;
};
}