add ExtraGroupInfo struct to contain group info from a metadata file
This commit is contained in:
parent
8c7f07d797
commit
32db4b56f1
21
src/geometry/extragroupinfo.h
Normal file
21
src/geometry/extragroupinfo.h
Normal 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
|
Reference in a new issue