mirror of
				https://github.com/Mestima/GodotHook.git
				synced 2025-11-04 03:02:34 +00:00 
			
		
		
		
	hook -> GodotHook
This commit is contained in:
		@ -5,10 +5,10 @@
 | 
				
			|||||||
#include "core/class_db.h"
 | 
					#include "core/class_db.h"
 | 
				
			||||||
#include "hook.h"
 | 
					#include "hook.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void register_hook_types() {
 | 
					void register_GodotHook_types() {
 | 
				
			||||||
    ClassDB::register_class<Hook>();
 | 
					    ClassDB::register_class<Hook>();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void unregister_hook_types() {
 | 
					void unregister_GodotHook_types() {
 | 
				
			||||||
   // Nothing to do here in this example.
 | 
					   // Nothing to do here in this example.
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@ -1,5 +1,5 @@
 | 
				
			|||||||
/* register_types.h */
 | 
					/* register_types.h */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void register_hook_types();
 | 
					void register_GodotHook_types();
 | 
				
			||||||
void unregister_hook_types();
 | 
					void unregister_GodotHook_types();
 | 
				
			||||||
/* yes, the word in the middle must be the same as the module folder name */
 | 
					/* yes, the word in the middle must be the same as the module folder name */
 | 
				
			||||||
		Reference in New Issue
	
	Block a user