This repository has been archived on 2024-05-15. You can view files and clone it, but cannot push or open issues or pull requests.
fugg/flyff-api/src/object/mover/JobProperty.h

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