You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
321 B
C++
18 lines
321 B
C++
10 years ago
|
#ifndef OPENMW_MWRENDER_VISMASK_H
|
||
|
#define OPENMW_MWRENDER_VISMASK_H
|
||
|
|
||
|
namespace MWRender
|
||
|
{
|
||
|
|
||
|
/// Node masks used for controlling visibility of game objects.
|
||
|
enum VisMask
|
||
|
{
|
||
|
Mask_UpdateVisitor = 0x1, // reserved for separating UpdateVisitors from CullVisitors
|
||
|
|
||
|
Mask_Effect = 0x2
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|