mirror of
https://github.com/Azimer/Apollo64.git
synced 2025-04-02 10:31:54 -04:00
20 lines
No EOL
442 B
C++
20 lines
No EOL
442 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.
|
|
*/
|
|
#ifndef __UIMAIN_H__
|
|
#define __UIMAIN_H__
|
|
/*
|
|
* Example class to test build environment
|
|
*/
|
|
class UIMain
|
|
{
|
|
public:
|
|
UIMain();
|
|
~UIMain();
|
|
};
|
|
|
|
#endif // __UIMAIN_H__
|