Files
LuaVox/Src/Server/Abstract.cpp
2025-08-20 17:53:35 +06:00

17 lines
328 B
C++

#include "Abstract.hpp"
#include <csignal>
namespace LV::Server {
}
namespace std {
template <>
struct hash<LV::Server::ServerObjectPos> {
std::size_t operator()(const LV::Server::ServerObjectPos& obj) const {
return std::hash<uint32_t>()(obj.WorldId) ^ std::hash<LV::Pos::Object>()(obj.ObjectPos);
}
};
}