mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
10 lines
165 B
C++
10 lines
165 B
C++
#include "util/guid/CHashKeyGUID.hpp"
|
|
|
|
CHashKeyGUID::CHashKeyGUID() {
|
|
this->m_guid = 0;
|
|
}
|
|
|
|
CHashKeyGUID::CHashKeyGUID(WOWGUID guid) {
|
|
this->m_guid = guid;
|
|
}
|