mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-03 19:54:24 +08:00
12 lines
115 B
C++
12 lines
115 B
C++
#pragma once
|
|
|
|
namespace pymol
|
|
{
|
|
enum class RenderContext
|
|
{
|
|
Camera = 0,
|
|
UnitWindow = 1
|
|
};
|
|
} // namespace pymol
|
|
|