Open

Description
The Rust convention suggests that types should not be prefixed with module names. However, GDNative also requires unique class_name
s for each exported type, which makes the former harder to achieve, since the NativeClass
derive macro gets the name from the type identifier. Allowing users to manually provide an alternate name would be an easy way around this limitation.