add fields to ExtraGroupInfo allowing it to be used to specify an Ms3d group by index or name

This commit is contained in:
Gered 2012-12-22 17:38:32 -05:00
parent c9df81d7ae
commit f525005abe

View file

@ -6,7 +6,9 @@
struct ExtraGroupInfo struct ExtraGroupInfo
{ {
BOOL specifiedByName;
std::string name; std::string name;
uint32_t index;
std::string textureFile; std::string textureFile;
BOOL alphaBlend; BOOL alphaBlend;
@ -15,6 +17,8 @@ struct ExtraGroupInfo
inline ExtraGroupInfo::ExtraGroupInfo() inline ExtraGroupInfo::ExtraGroupInfo()
{ {
specifiedByName = FALSE;
index = 0;
alphaBlend = FALSE; alphaBlend = FALSE;
} }