24 lines
339 B
C++
24 lines
339 B
C++
//
|
|
// Created by main on 22-10-22.
|
|
//
|
|
|
|
#ifndef FUGG_JOBPROPERTY_H
|
|
#define FUGG_JOBPROPERTY_H
|
|
|
|
#include "../../core.h"
|
|
|
|
#include "JobID.h"
|
|
|
|
namespace flyff {
|
|
struct JobProperty {
|
|
union {
|
|
DEFINE_MEMBER(12, const JobID, id);
|
|
|
|
const MinimumSize<28> _size;
|
|
};
|
|
};
|
|
};
|
|
|
|
|
|
#endif //FUGG_JOBPROPERTY_H
|