-
-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathSkeletonBone.h
54 lines (41 loc) · 1.2 KB
/
SkeletonBone.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* Copyright (c) scott.cgi All Rights Reserved.
*
* This source code belongs to project Mojoc, which is a pure C Game Engine hosted on GitHub.
* The Mojoc Game Engine is licensed under the MIT License, and will continue to be iterated with coding passion.
*
* License : https://github.com/scottcgi/Mojoc/blob/master/LICENSE
* GitHub : https://github.com/scottcgi/Mojoc
* CodeStyle: https://github.com/scottcgi/Mojoc/blob/master/Docs/CodeStyle.md
*
* Since : 2013-7-2
* Update : 2019-2-13
* Author : scott.cgi
*/
#ifndef SKELETON_BONE_H
#define SKELETON_BONE_H
#include "Engine/Extension/Spine/SkeletonData.h"
#include "Engine/Graphics/Draw/Drawable.h"
/**
* The skeleton bone can transform and draw by drawable.
*/
typedef struct
{
Drawable drawable[1];
SkeletonBoneData* boneData;
}
SkeletonBone;
/**
* Control SkeletonBone.
*/
struct ASkeletonBone
{
SkeletonBone* (*Create) (SkeletonBoneData* boneData);
void (*Init) (SkeletonBoneData* boneData, SkeletonBone* outBone);
/**
* Set bone to setup pose.
*/
void (*SetToSetupPose)(SkeletonBone* bone);
};
extern struct ASkeletonBone ASkeletonBone[1];
#endif