mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Remove registration of deprecated classes
This commit is contained in:
@@ -51,7 +51,6 @@
|
||||
#include "core/io/json.h"
|
||||
#include "core/io/marshalls.h"
|
||||
#include "core/io/missing_resource.h"
|
||||
#include "core/io/packed_data_container.h"
|
||||
#include "core/io/packet_peer.h"
|
||||
#include "core/io/packet_peer_dtls.h"
|
||||
#include "core/io/packet_peer_udp.h"
|
||||
@@ -80,6 +79,9 @@
|
||||
#include "core/string/optimized_translation.h"
|
||||
#include "core/string/translation.h"
|
||||
#include "core/string/translation_server.h"
|
||||
#ifndef DISABLE_DEPRECATED
|
||||
#include "core/io/packed_data_container.h"
|
||||
#endif
|
||||
|
||||
static Ref<ResourceFormatSaverBinary> resource_saver_binary;
|
||||
static Ref<ResourceFormatLoaderBinary> resource_loader_binary;
|
||||
@@ -264,13 +266,15 @@ void register_core_types() {
|
||||
|
||||
GDREGISTER_CLASS(PCKPacker);
|
||||
|
||||
GDREGISTER_CLASS(PackedDataContainer);
|
||||
GDREGISTER_ABSTRACT_CLASS(PackedDataContainerRef);
|
||||
GDREGISTER_CLASS(AStar3D);
|
||||
GDREGISTER_CLASS(AStar2D);
|
||||
GDREGISTER_CLASS(AStarGrid2D);
|
||||
GDREGISTER_CLASS(EncodedObjectAsID);
|
||||
GDREGISTER_CLASS(RandomNumberGenerator);
|
||||
#ifndef DISABLE_DEPRECATED
|
||||
GDREGISTER_CLASS(PackedDataContainer);
|
||||
GDREGISTER_ABSTRACT_CLASS(PackedDataContainerRef);
|
||||
#endif
|
||||
|
||||
GDREGISTER_ABSTRACT_CLASS(ImageFormatLoader);
|
||||
GDREGISTER_CLASS(ImageFormatLoaderExtension);
|
||||
|
||||
Reference in New Issue
Block a user