Newer
Older
Import / research / 3d-experiments / Framework / Application.h
@John John on 29 Dec 2020 416 bytes bulk import from macbookpro checkouts
//
//  Application.h
//  Framework
//
//  Created by John Ryland on 4/10/17.
//  Copyright © 2017 John Ryland. All rights reserved.
//

#pragma once

#ifndef Application_h
#define Application_h


#include <vector>
#include <string>


class Application
{
public:
  Application(int argc, const char* argv[]);
  ~Application();
  int run();

private:
  std::vector<std::string> m_args;
};


#endif /* Application_h */