mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 17:26:01 +08:00
21 lines
362 B
C++
21 lines
362 B
C++
#ifndef SPINE_BASEREGIONATTACHMENT_H_
|
|
#define SPINE_BASEREGIONATTACHMENT_H_
|
|
|
|
#include <spine/Attachment.h>
|
|
|
|
namespace spine {
|
|
|
|
class Bone;
|
|
|
|
class BaseRegionAttachment: public Attachment {
|
|
public:
|
|
float offset[8];
|
|
|
|
void updateOffset ();
|
|
|
|
virtual void updateWorldVertices (Bone *bone) = 0;
|
|
};
|
|
|
|
} /* namespace spine */
|
|
#endif /* SPINE_BASEREGIONATTACHMENT_H_ */
|