#[macro_export]
macro_rules! emit_deprecated_warning {
($warning_fn:ident) => {
const _: () = $crate::__deprecated::$warning_fn();
};
}
pub use crate::emit_deprecated_warning;
#[deprecated = "\nUse `key => value` syntax in `vdict!` macro.\nOld syntax `key: value` will be removed."]
pub const fn vdict_colon_syntax() {}
#[deprecated = "\n\
Virtual method `get_property` has been renamed to `on_get`.\n\
See https://github.com/godot-rust/gdext/pull/1527."]
pub const fn virtual_method_get_property() {}
#[deprecated = "\n\
Virtual method `set_property` has been renamed to `on_set`.\n\
See https://github.com/godot-rust/gdext/pull/1527."]
pub const fn virtual_method_set_property() {}
#[deprecated = "\n\
Virtual method `validate_property` has been renamed to `on_validate_property`.\n\
See https://github.com/godot-rust/gdext/pull/1527."]
pub const fn virtual_method_validate_property() {}
#[deprecated = "\n\
Virtual method `get_property_list` has been renamed to `on_get_property_list`.\n\
See https://github.com/godot-rust/gdext/pull/1527."]
pub const fn virtual_method_get_property_list() {}
#[deprecated = "\n\
Virtual method `property_get_revert` has been renamed to `on_property_get_revert`.\n\
See https://github.com/godot-rust/gdext/pull/1527."]
pub const fn virtual_method_property_get_revert() {}
#[deprecated = "\n\
Signal names starting with `_` are discouraged in Rust.\n\
Instead, use: `#[signal(internal)] fn my_signal();`\n\
This registers it as `_my_signal`, effectively hiding it in Godot."]
pub const fn signal_underscore_prefix() {}