mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 11:26:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			307 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			307 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef GAME_MWWORLD_CUSTOMDATA_H
 | 
						|
#define GAME_MWWORLD_CUSTOMDATA_H
 | 
						|
 | 
						|
namespace MWWorld
 | 
						|
{
 | 
						|
    /// \brief Base class for the MW-class-specific part of RefData
 | 
						|
    class CustomData
 | 
						|
    {
 | 
						|
        public:
 | 
						|
 | 
						|
            virtual ~CustomData() {}
 | 
						|
 | 
						|
            virtual CustomData *clone() const = 0;
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |