mirror of
				https://github.com/isledecomp/isle.git
				synced 2025-10-26 01:44:19 +00:00 
			
		
		
		
	 3e6d789324
			
		
	
	3e6d789324
	
	
	
		
			
			* Add all BETA10 `ClassName()` functions and vtables * Run formatter, fix copy error * Fix copy error * Add BETA10 library functions --------- Co-authored-by: jonschz <jonschz@users.noreply.github.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			822 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			822 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef MXDSSTILL_H
 | |
| #define MXDSSTILL_H
 | |
| 
 | |
| #include "mxdsmediaaction.h"
 | |
| 
 | |
| // VTABLE: LEGO1 0x100dce60
 | |
| // VTABLE: BETA10 0x101c2bf8
 | |
| // SIZE 0xb8
 | |
| class MxDSStill : public MxDSMediaAction {
 | |
| public:
 | |
| 	MxDSStill();
 | |
| 	~MxDSStill() override;
 | |
| 
 | |
| 	void CopyFrom(MxDSStill& p_dsStill);
 | |
| 	MxDSStill& operator=(MxDSStill& p_dsStill);
 | |
| 
 | |
| 	// FUNCTION: LEGO1 0x100c9930
 | |
| 	// FUNCTION: BETA10 0x1015dad0
 | |
| 	const char* ClassName() const override // vtable+0x0c
 | |
| 	{
 | |
| 		// STRING: LEGO1 0x101025fc
 | |
| 		return "MxDSStill";
 | |
| 	}
 | |
| 
 | |
| 	// FUNCTION: LEGO1 0x100c9940
 | |
| 	MxBool IsA(const char* p_name) const override // vtable+0x10
 | |
| 	{
 | |
| 		return !strcmp(p_name, MxDSStill::ClassName()) || MxDSMediaAction::IsA(p_name);
 | |
| 	}
 | |
| 
 | |
| 	MxDSAction* Clone() override; // vtable+2c;
 | |
| 
 | |
| 	// SYNTHETIC: LEGO1 0x100c9a50
 | |
| 	// MxDSStill::`scalar deleting destructor'
 | |
| };
 | |
| 
 | |
| #endif // MXDSSTILL_H
 |