-
Notifications
You must be signed in to change notification settings - Fork 0
/
Krampus_Game_Engine.h
47 lines (37 loc) · 951 Bytes
/
Krampus_Game_Engine.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#pragma once
#include "Character2D.h"
#include "Character_Controller.h"
#include "Character_Input_System.h"
#include "Graphics_Info.h"
#include "Keyboard.h"
#include "Linked_List.h"
#include "Menu.h"
#include "Photon.h"
#include "Scroller.h"
#include "Timing.h"
class Krampus_Game_Engine
{
public:
Krampus_Game_Engine ();
Krampus_Game_Engine (int screen_width, int screen_height);
~Krampus_Game_Engine ();
void Init (HWND Window, Graphics_Info graphics);
void Main_Loop ();
void Render ();
void Update_Character_Systems ();
Menu menu;
private:
HWND Window;
Photon photon;
Timing timer;
//Linked_List<Character2D> characters;
Character_Controller character_controller;
Character_Input_System character_input_system;
Scroller scroll;
Keyboard keyboard;
Graphics_Info graphics;
HBITMAP background_bitmap;
Bitmap player_bitmap;
Bitmap badguy_test_bitmap;
int screen_width, screen_height;
};