2019-11-13 13:37:49 +01:00
|
|
|
#ifndef LIBRARY_GRAPHICMODE_HPP
|
|
|
|
#define LIBRARY_GRAPHICMODE_HPP
|
|
|
|
|
|
|
|
|
|
|
|
namespace vkvm {
|
|
|
|
/**
|
|
|
|
* all possible graphics modes.
|
|
|
|
* @author Johannes Theiner
|
|
|
|
* @since 0.1.0
|
|
|
|
*/
|
|
|
|
enum GraphicMode {
|
|
|
|
Text = 1,
|
|
|
|
TwoColors = 2,
|
|
|
|
Gray_256 = 3,
|
2019-11-13 15:42:04 +01:00
|
|
|
RGB = 4
|
2019-11-13 13:37:49 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|