> For the complete documentation index, see [llms.txt](https://long-banana.gitbook.io/raindrops/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://long-banana.gitbook.io/raindrops/concepts/propagation-permission.md).

# Propagation Permission

Permissions can be propagated from a parent class to a child class in either the fashion that overwrites the child array or is additive.

To specify which permissions get propagated, use the `child_update_propagation_permissiveness` array on the `Player` or `Item` classes.

The available options are:

```rust
pub struct ChildUpdatePropagationPermissiveness {
    overridable: bool,
    inherited: InheritanceState,
    child_update_propagation_permissiveness_type: ChildUpdatePropagationPermissivenessType,
}

pub enum ChildUpdatePropagationPermissivenessType {
    Usages,
    Components,
    UpdatePermissiveness,
    BuildPermissiveness,
    ChildUpdatePropagationPermissiveness,
    ChildrenMustBeEditionsPermissiveness,
    BuilderMustBeHolderPermissiveness,
    StakingPermissiveness,
    Namespaces,
    FreeBuildPermissiveness,
}
```

If you change this setting on an `ItemClass`, a permission-less `update_item_class` call can be made to the `Item` contract to enforce this down the `ItemClass`'s inheritance tree.
