Changeset 9546928 in opengl-game


Ignore:
Timestamp:
Sep 2, 2019, 4:55:09 PM (5 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
2beb6c7
Parents:
76d19a8
Message:

Move some constants into consts.hpp

Files:
1 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • crash-logger.cpp

    r76d19a8 r9546928  
    99
    1010#include "Compiler.h"
    11 #include "Consts.h"
     11#include "consts.hpp"
    1212
    1313// TODO: Double-check which includes are necessary
  • game-gui-glfw.cpp

    r76d19a8 r9546928  
    11#include "game-gui-glfw.hpp"
     2
     3#include "consts.hpp"
    24
    35string GameGui_GLFW::s_errorMessage;
  • game-gui-sdl.cpp

    r76d19a8 r9546928  
    11#include "game-gui-sdl.hpp"
     2
     3#include "consts.hpp"
    24
    35string GameGui_SDL::s_errorMessage;
  • game-gui.hpp

    r76d19a8 r9546928  
    11#ifndef _GAME_GUI_H
    22#define _GAME_GUI_H
     3
     4#include <string>
     5#include <vector>
    36
    47#ifdef GAMEGUI_INCLUDE_VULKAN
     
    69#endif
    710
    8 #include <string>
    9 #include <vector>
     11#include "consts.hpp"
    1012
    1113using namespace std;
    12 
    13 #define RTWO_SUCCESS true
    14 #define RTWO_ERROR false
    1514
    1615class GameGui {
Note: See TracChangeset for help on using the changeset viewer.