summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/cheatopt.h
blob: dbbacc2eed1df3a313b47954f7c0c1c72a80d9be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// license:???
// copyright-holders:???
/***************************************************************************

    ui/cheatopt.h

    Internal menu for the cheat interface.

    Copyright Nicola Salmoria and the MAME Team.
    Visit http://mamedev.org for licensing and usage restrictions.

***************************************************************************/

#pragma once

#ifndef __UI_CHEATOPT_H__
#define __UI_CHEATOPT_H__

class ui_menu_cheat : public ui_menu {
public:
	ui_menu_cheat(running_machine &machine, render_container *container);
	virtual ~ui_menu_cheat();
	virtual void populate();
	virtual void handle();
};

#endif  /* __UI_CHEATOPT_H__ */