diff options
author | chai <chaifix@163.com> | 2018-11-21 21:12:42 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-11-21 21:12:42 +0800 |
commit | 07022c42a925d4d0c23ab31f0e75883766ce773a (patch) | |
tree | 5aa5fc533534ab987c954a30fa11fc124c50a755 /src/libjin/graphics/je_mesh.h | |
parent | f440f7fb52ca62715504e4a3c7076456de40f7b8 (diff) |
*动画系统
Diffstat (limited to 'src/libjin/graphics/je_mesh.h')
-rw-r--r-- | src/libjin/graphics/je_mesh.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libjin/graphics/je_mesh.h b/src/libjin/graphics/je_mesh.h index e0a38f8..27c0cb7 100644 --- a/src/libjin/graphics/je_mesh.h +++ b/src/libjin/graphics/je_mesh.h @@ -14,12 +14,13 @@ namespace JinEngine class Mesh { public: - void setGraphic(); - + void setGraphic(const Graphic* graphic); + void pushVertex(float x, float y, float u, float v); private: const Graphic* mGraphic; + }; } // namespace Graphics |