mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 14:30:35 +02:00
add new Menu class for Application cleanup
This commit is contained in:
parent
6e2e58a1e4
commit
5b181bd351
3 changed files with 66 additions and 30 deletions
17
interface/src/Menu.cpp
Normal file
17
interface/src/Menu.cpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
//
|
||||
// Menu.cpp
|
||||
// hifi
|
||||
//
|
||||
// Created by Stephen Birarda on 8/12/13.
|
||||
// Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
|
||||
//
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
#include "Menu.h"
|
||||
|
||||
Menu* Menu::_instance = NULL;
|
||||
|
||||
void Menu::init() {
|
||||
|
||||
}
|
19
interface/src/Menu.h
Normal file
19
interface/src/Menu.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
//
|
||||
// Menu.h
|
||||
// hifi
|
||||
//
|
||||
// Created by Stephen Birarda on 8/12/13.
|
||||
// Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef __hifi__Menu__
|
||||
#define __hifi__Menu__
|
||||
|
||||
class Menu {
|
||||
public:
|
||||
static void init();
|
||||
private:
|
||||
static Menu* _instance;
|
||||
};
|
||||
|
||||
#endif /* defined(__hifi__Menu__) */
|
Loading…
Reference in a new issue