Browse Source

Header updates.

Godzil 3 years ago
parent
commit
0c92e1df2c
3 changed files with 20 additions and 4 deletions
  1. 2 1
      source/Game.cpp
  2. 10 0
      source/Main.cpp
  3. 8 3
      source/include/Game.h

+ 2 - 1
source/Game.cpp

@@ -1,4 +1,5 @@
-/* 2D Game Engine
+/*
+ * 2D Game Engine
  * Game.cpp: Base Game engine class
  * Based on pikuma.com 2D game engine in C++ and Lua course
  * Copyright (c) 2021 986-Studio. All Right Reserved

+ 10 - 0
source/Main.cpp

@@ -1,3 +1,12 @@
+/*
+ * 2D Game Engine
+ * Main.cpp: App entry point
+ * Based on pikuma.com 2D game engine in C++ and Lua course
+ * Copyright (c) 2021 986-Studio. All Right Reserved
+ *
+ * Created by Manoël Trapier on 09/02/2021.
+ */
+
 #include <iostream>
 
 #include <Game.h>
@@ -9,5 +18,6 @@ int main(int argc, char *argv[])
     game.Initialize();
     game.Run();
     game.Destroy();
+
     return 0;
 }

+ 8 - 3
source/include/Game.h

@@ -1,6 +1,11 @@
-//
-// Created by Manoël Trapier on 09/02/2021.
-//
+/*
+ * 2D Game Engine
+ * Game.h: Base Game engine class header
+ * Based on pikuma.com 2D game engine in C++ and Lua course
+ * Copyright (c) 2021 986-Studio. All Right Reserved
+ *
+ * Created by Manoël Trapier on 09/02/2021.
+ */
 #ifndef GAMEENGINE_GAME_H
 #define GAMEENGINE_GAME_H