mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
14 lines
342 B
C++
14 lines
342 B
C++
#ifndef OBJECT_CLIENT_CG_CONTAINER_C_HPP
|
|
#define OBJECT_CLIENT_CG_CONTAINER_C_HPP
|
|
|
|
#include "object/client/CGContainer.hpp"
|
|
#include "object/client/CGItem_C.hpp"
|
|
|
|
class CGContainer_C : public CGItem_C, public CGContainer {
|
|
public:
|
|
// Public member functions
|
|
void SetStorage(uint32_t* storage, uint32_t* saved);
|
|
};
|
|
|
|
#endif
|