Space Fighter
A "shmup" game for Computer Programming C++
Loading...
Searching...
No Matches
Level02.h
Go to the documentation of this file.
1#pragma once
2
3#include "Level.h"
4
6class Level02 : public Level
7{
8
9public:
10
12 Level02() { }
13 virtual ~Level02() { }
14
18 virtual void LoadContent(ResourceManager& resourceManager);
19};
Loads and manages the lifespan of objects from external files.
The second level of the game.
Definition Level02.h:7
virtual ~Level02()
Definition Level02.h:13
virtual void LoadContent(ResourceManager &resourceManager)
Load the content for the level, including game objects and resources.
Definition Level02.cpp:7
Level02()
Instantiate a level object.
Definition Level02.h:12
Represents a level in the game.
Definition Level.h:15