Apollo64/source/UIMain.cc
Azimer 9701104d0f Create LICENSE (#3)
Added GPL v3 license to the project
2017-02-19 14:55:16 -06:00

21 lines
473 B
C++

/*
* Apollo64 - Cross-platform Nintendo 64 emulator
* Copyright (C) 2017 - Azimer - http://www.apollo64.com/
*
* This program is distributed under the GNU General Public License v3.
* See the LICENSE document supplied with this source code for details.
*/
#include <iostream>
#include "UIMain.h"
UIMain::UIMain()
{
std::cout << "UIMain default constructor" << std::endl;
}
UIMain::~UIMain()
{
std::cout << "UIMain default deconstructor" << std::endl;
}