mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-05 14:54:53 +08:00
23 lines
354 B
C++
23 lines
354 B
C++
#ifndef SPINE_SLOTDATA_H_
|
|
#define SPINE_SLOTDATA_H_
|
|
|
|
#include <string>
|
|
|
|
namespace spine {
|
|
|
|
class BoneData;
|
|
|
|
class SlotData {
|
|
public:
|
|
std::string name;
|
|
BoneData *boneData;
|
|
float r, g, b, a;
|
|
std::string *attachmentName;
|
|
|
|
SlotData (const std::string &name, BoneData *boneData);
|
|
~SlotData ();
|
|
};
|
|
|
|
} /* namespace spine */
|
|
#endif /* SPINE_SLOTDATA_H_ */
|