chore(object): restructure mirror-oriented util functions

This commit is contained in:
fallenoak 2026-01-11 20:00:44 -06:00
parent 860d6978fd
commit 8ab88329bb
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
3 changed files with 8 additions and 14 deletions

View File

@ -1,4 +1,4 @@
#include "object/client/Utils.hpp"
#include "object/client/Mirror.hpp"
#include "object/client/CGContainer.hpp"
#include "object/client/CGCorpse.hpp"
#include "object/client/CGDynamicObject.hpp"

View File

@ -0,0 +1,7 @@
#ifndef OBJECT_CLIENT_MIRROR_HPP
#define OBJECT_CLIENT_MIRROR_HPP
#include "object/Types.hpp"
#include <cstdint>
#endif

View File

@ -1,13 +0,0 @@
#ifndef OBJECT_CLIENT_UTILS_HPP
#define OBJECT_CLIENT_UTILS_HPP
#include "object/Types.hpp"
#include <cstdint>
class CGObject_C;
uint32_t GetNumDwordBlocks(OBJECT_TYPE type, uint64_t guid);
OBJECT_TYPE_ID IncTypeID(CGObject_C* object, OBJECT_TYPE_ID curTypeID);
#endif