Newer
Older
Import / applications / HighwayDash / ports / Game / Application.h
@John Ryland John Ryland on 22 Dec 2020 227 bytes import NUC files
#ifndef APPLICATION_H
#define APPLICATION_H


#include <memory>


class Application
{
public:
    Application();
    ~Application();

private:
    struct Pimpl;
    std::unique_ptr<Pimpl> m_pimpl;
};


#endif // APPLICATION_H