Skip to content
Snippets Groups Projects
Commit 2d105d11 authored by Shon Ferguson's avatar Shon Ferguson
Browse files

Renamed Color structure to Color4.

parent a5193bd7
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ struct Key {
%template(vector_blk_ref) std::vector<blk_ref>;
%template(list_blk_ref) std::list<blk_ref>;
%template(vector_Vector3) std::vector<Vector3>;
%template(vector_Color) std::vector<Color>;
%template(vector_Color) std::vector<Color4>;
%template(vector_TexCoord) std::vector<TexCoord>;
%template(vector_Triangle) std::vector<Triangle>;
%template(vector_SkinWeight) std::vector<SkinWeight>;
......@@ -95,8 +95,8 @@ struct Key {
%template(vector_Key_Vector3) std::vector< Key<Vector3> >;
%template(Key_float) Key<float>;
%template(vector_Key_float) std::vector< Key<float> >;
%template(Key_Color) Key<Color>;
%template(vector_Key_Color) std::vector< Key<Color> >;
%template(Key_Color4) Key<Color4>;
%template(vector_Key_Color4) std::vector< Key<Color4> >;
%template(Key_string) Key<std::string>;
%template(vector_Key_string) std::vector< Key<std::string> >;
%template(blablabla) Key<double>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment