Also renamed the rtile_map module itself to tile_map.

This commit is contained in:
Relintai 2022-10-09 11:50:46 +02:00
parent c6f998b2a6
commit 5123cf9837
16 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ SOFTWARE.
#include "tile_set_editor_plugin.h" #include "tile_set_editor_plugin.h"
#endif #endif
void register_rtile_map_types() { void register_tile_map_types() {
#ifdef TOOLS_ENABLED #ifdef TOOLS_ENABLED
EditorPlugins::add_by_type<TileMapEditorPlugin>(); EditorPlugins::add_by_type<TileMapEditorPlugin>();
EditorPlugins::add_by_type<TileSetEditorPlugin>(); EditorPlugins::add_by_type<TileSetEditorPlugin>();
@ -40,5 +40,5 @@ void register_rtile_map_types() {
ClassDB::register_class<TileSet>(); ClassDB::register_class<TileSet>();
} }
void unregister_rtile_map_types() { void unregister_tile_map_types() {
} }

View File

@ -20,5 +20,5 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. SOFTWARE.
*/ */
void register_rtile_map_types(); void register_tile_map_types();
void unregister_rtile_map_types(); void unregister_tile_map_types();