← index
cplusplus17.Examples/examples/strategy/window_const.hpp
Source: cplusplus17.Examples/examples/strategy/window_const.hpp
#ifndef _WINDOW_CONST_H_
#define _WINDOW_CONST_H_

namespace game {
    const int WINDOW_SIZE_WIDTH = 1280;
    const int WINDOW_SIZE_HEIGHT = 720;
}

#endif