add ExtraGroupInfo struct to contain group info from a metadata file

This commit is contained in:
Gered 2012-12-22 16:15:01 -05:00
parent 8c7f07d797
commit 32db4b56f1

View file

@ -0,0 +1,21 @@
#ifndef __GEOMETRY_EXTRAGROUPINFO_H_INCLUDED__
#define __GEOMETRY_EXTRAGROUPINFO_H_INCLUDED__
#include "../common.h"
#include <string>
struct ExtraGroupInfo
{
std::string name;
std::string textureFile;
BOOL alphaBlend;
ExtraGroupInfo();
};
inline ExtraGroupInfo::ExtraGroupInfo()
{
alphaBlend = FALSE;
}
#endif