Tyro/TyroApp.h

22 lines
500 B
C++

/***************************************************************
* Name: TyroApp.h
* Purpose: Defines Application Class
* Author: Timothy J Warren (tim@timshomepage.net)
* Created: 2015-03-30
* Copyright: Timothy J Warren (https://timshomepage.net)
* License:
**************************************************************/
#ifndef TYROAPP_H
#define TYROAPP_H
#include <wx/app.h>
class TyroApp : public wxApp
{
public:
virtual bool OnInit();
};
#endif // TYROAPP_H