mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 22:56:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			476 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			476 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef OPENMW_MWGUI_SOULGEMDIALOG_H
 | |
| #define OPENMW_MWGUI_SOULGEMDIALOG_H
 | |
| 
 | |
| #include "../mwworld/ptr.hpp"
 | |
| 
 | |
| namespace MWGui
 | |
| {
 | |
| 
 | |
|     class MessageBoxManager;
 | |
| 
 | |
|     class SoulgemDialog
 | |
|     {
 | |
|     public:
 | |
|         SoulgemDialog (MessageBoxManager* manager)
 | |
|             : mManager(manager) {}
 | |
| 
 | |
|         void show (const MWWorld::Ptr& soulgem);
 | |
| 
 | |
|         void onButtonPressed(int button);
 | |
| 
 | |
|     private:
 | |
|         MessageBoxManager* mManager;
 | |
|         MWWorld::Ptr mSoulgem;
 | |
|     };
 | |
| 
 | |
| }
 | |
| 
 | |
| #endif
 |