Fluid Api In Library - junkdog/artemis-odb GitHub Wiki
Can I use fluid interfaces in both my library and game systems? Can I use different fluid interfaces in different scopes?
Options right now:
- Run the plugin in your library system module,
Ewill not know about any of your game classes and you cannot compile it again. - Run the plugin in your game system module, it will have access to both game and library components, but you cannot use it in your libraries higher up the dependency chain.
We recommend running it in your game system module, where typically most assembly / broad interactions reside.