#pragma once class Level { public: Level(); ~Level(); virtual void Update(float elapsedSec); virtual void Draw() const; private: };