Advertisement
halexandru11

Constants.hpp

Dec 7th, 2021
902
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #pragma once
  2.  
  3. class Constants {
  4. public:
  5.     static const int Width = 800;
  6.     static const int Height = 600;
  7.  
  8.     enum NodeType {
  9.         StartNode = 1,
  10.         AssignNode,
  11.         ConditionalNode,
  12.         StopNode
  13.     };
  14. };
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement