接口 ActionManager实验性

Binds actions to the client and manages their lifetime. Action managers are managed on a per player basis since client side UI is per player.

interface ActionManager {
    createAction<T>(rawAction: T): RegisteredAction<T>;
}

方法