mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 00:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			No EOL
		
	
	
		
			263 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			No EOL
		
	
	
		
			263 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef PLAYPAGE_H
 | 
						|
#define PLAYPAGE_H
 | 
						|
 | 
						|
#include <QWidget>
 | 
						|
 | 
						|
class QComboBox;
 | 
						|
class QPushButton;
 | 
						|
 | 
						|
class PlayPage : public QWidget
 | 
						|
{
 | 
						|
    Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
    PlayPage(QWidget *parent = 0);
 | 
						|
 | 
						|
    QComboBox *mProfilesComboBox;
 | 
						|
    QPushButton *mPlayButton;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
#endif |