mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 07:19:54 +00:00
17 lines
321 B
C++
17 lines
321 B
C++
#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
|