Metadata-Version: 2.1
Name: JsMacrosAC
Version: 1.5.1.7221111
Summary: A package to let your IDE know what JsMacros can do
Home-page: UNKNOWN
Author: Hasenzahn1
Author-email: <motzer10@gmx.de>
License: UNKNOWN
Description: # JsMacrosAC
        The sole purpose of this package is to let your IDE know what functions the various [JsMacros](https://www.curseforge.com/minecraft/mc-mods/jsmacros) classes have.\
        Please note that this package does **not** add functionality and will crash your scripts if it is not imported correctly.
        
        # How to import
        ```python
        if __name__ == "": from JsMacrosAC import *
        ```
        
        # In an event file
        ```python
        if __name__ == "": 
            from JsMacrosAC import *
            event = EventAirChange() #No need to worry about arguments since you do not create the object.
        ```
        
        # Thing to note
        Since Python does not support function overloading, only one function is displayed in some IDEs. In the description of the function you will learn about the different ways to use this function.
Keywords: python,JsMacros,Autocomplete,Doc
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
