imjp94 / gd-plug

Minimal plugin manager for Godot
MIT License
215 stars 15 forks source link

Add underscore prefix to inner classes #5

Closed lihop closed 3 years ago

lihop commented 3 years ago

Fixes class name conflict with the ThreadPool plugin and reduces the likelyhood of class name conflicts with other plugins.

The underscore prefix also indicates that these classes are "private" (intended for internal use by gd-plug) and not part of the public gd-plug API.

Closes #4

imjp94 commented 3 years ago

Thanks!