Browse Source

Remove entrypoint.h from generic include collection

master
Riyyi 3 years ago
parent
commit
dacebbe6b1
  1. 1
      game/src/game.cpp
  2. 9
      inferno/src/inferno.h

1
game/src/game.cpp

@ -1,4 +1,5 @@
#include "inferno.h" #include "inferno.h"
#include "inferno/entrypoint.h"
class Game : public Inferno::Application class Game : public Inferno::Application
{ {

9
inferno/src/inferno.h

@ -1,17 +1,16 @@
#ifndef INFERNO_H #ifndef INFERNO_H
#define INFERNO_H #define INFERNO_H
// This file is for use by the game // For use by the game
// ----------------------------------------- // -----------------------------------------
#include "inferno/core.h"
#include "inferno/application.h" #include "inferno/application.h"
#include "inferno/assert.h"
#include "inferno/io/log.h" #include "inferno/io/log.h"
// ----------------------------------------- // -----------------------------------------
#include "inferno/entrypoint.h"
// -----------------------------------------
#endif // INFERNO_H #endif // INFERNO_H

Loading…
Cancel
Save