mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-11 11:18:40 +00:00
20 lines
371 B
C
20 lines
371 B
C
/**
|
|
* Jingga
|
|
*
|
|
* @copyright Jingga
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
#ifndef TOS_MODELS_ITEM_LEVEL_STATS_H
|
|
#define TOS_MODELS_ITEM_LEVEL_STATS_H
|
|
|
|
#include "ItemRarityStats.h"
|
|
#include "MobLevelStats.h"
|
|
#include "_item_rarity.h"
|
|
|
|
struct ItemLevelStats {
|
|
ItemRarityStats rarity_stats[RARITY_TYPE_SIZE];
|
|
};
|
|
|
|
#endif |