mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-11 03:08:41 +00:00
24 lines
413 B
C
Executable File
24 lines
413 B
C
Executable File
/**
|
|
* Jingga
|
|
*
|
|
* @copyright Jingga
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
#ifndef COMS_MODELS_MOB_ACTIVITY_STATS_H
|
|
#define COMS_MODELS_MOB_ACTIVITY_STATS_H
|
|
|
|
#include "../../stdlib/Types.h"
|
|
|
|
/**
|
|
* @todo optimize order of struct members to ensure optimal struct size
|
|
*/
|
|
|
|
struct SActivityStats {
|
|
int32 farming;
|
|
int32 thiefing;
|
|
int32 mining;
|
|
};
|
|
|
|
#endif |