mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	Removed (slightly) old coin and static ent removal system
Resynchronized respawners
Added packet for macro deletions
    better than previous system since the entities don't need a sync id and we can synchronize deletion station across areas
    allows the synchronization of odd entities like lines of coins
Added packet for spawn info deletions
Split packet_location_request into multiple files
		
	
			
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			325 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			325 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef MACRO_PRESETS_H
 | 
						|
#define MACRO_PRESETS_H
 | 
						|
 | 
						|
#include "macro_preset_names.h"
 | 
						|
#include "behavior_data.h"
 | 
						|
#include "model_ids.h"
 | 
						|
 | 
						|
struct MacroPreset
 | 
						|
{
 | 
						|
    /*0x00*/ const BehaviorScript *behavior;
 | 
						|
    /*0x04*/ s16 model;
 | 
						|
    /*0x06*/ s16 param;
 | 
						|
};
 | 
						|
 | 
						|
extern struct MacroPreset MacroObjectPresets[];
 | 
						|
 | 
						|
#endif // MACRO_PRESETS_H
 |