mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
17 lines
280 B
C++
17 lines
280 B
C++
#ifndef OBJECT_CLIENT_CG_DYNAMIC_OBJECT_HPP
|
|
#define OBJECT_CLIENT_CG_DYNAMIC_OBJECT_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
struct CGDynamicObjectData {
|
|
// TODO
|
|
};
|
|
|
|
class CGDynamicObject {
|
|
public:
|
|
// Public static functions
|
|
static uint32_t TotalFieldsSaved();
|
|
};
|
|
|
|
#endif
|