mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
23 lines
303 B
C++
23 lines
303 B
C++
#ifndef SPINE_ATTACHMENT_H_
|
|
#define SPINE_ATTACHMENT_H_
|
|
|
|
#include <string>
|
|
|
|
namespace spine {
|
|
|
|
class BaseSkeleton;
|
|
class Slot;
|
|
|
|
class Attachment {
|
|
public:
|
|
std::string name;
|
|
|
|
virtual ~Attachment () {
|
|
}
|
|
|
|
virtual void draw (Slot *slot) = 0;
|
|
};
|
|
|
|
} /* namespace spine */
|
|
#endif /* SPINE_ATTACHMENT_H_ */
|