You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fabric API follows an API/implementation model, where each module is split into three packages:
api package - Contains interfaces and utility classes that API consumers reference directly
impl package - Contains implementations of the API that are references by helper methods in the API
mixin package - Contains mixins necessary to make functionality work
Plasmid, and in particular its core game API, should more closely follow this API structure. Currently, some APIs use interfaces, but aren't placed in separate packages.
The text was updated successfully, but these errors were encountered:
Fabric API follows an API/implementation model, where each module is split into three packages:
api
package - Contains interfaces and utility classes that API consumers reference directlyimpl
package - Contains implementations of the API that are references by helper methods in the APImixin
package - Contains mixins necessary to make functionality workPlasmid, and in particular its core game API, should more closely follow this API structure. Currently, some APIs use interfaces, but aren't placed in separate packages.
The text was updated successfully, but these errors were encountered: