-
Notifications
You must be signed in to change notification settings - Fork 40
Base (core module)
Pyrofab edited this page Dec 22, 2020
·
2 revisions
This module defines the component framework, with the base common API and implementation. Any application that uses Cardinal Components depends on this module. Its main APIs are:
-
Component
, the base interface that every component must implement (More Information) -
ComponentKey
, the class through which components are retrieved -
ComponentRegistry
, the interface through which you registerComponentKey
s (More Information) -
SyncedComponent
, the utility interface for synchronizing components (More Information) -
ComponentProvider
andComponentContainer
, interfaces that can be used to attach components to your own objects, or to interact with components generically
module ref: cardinal-components-base