Raven B4
  • Main Page
  • Guide
    • Setup
    • Examples
  • Documentation
    • imports
    • events
    • client
    • entity
    • network
    • world
    • render
    • gl
    • modules
    • config
    • keybinds
    • inventory
    • tile entity
    • util
    • bridge
    • http
    • json
    • packets
    • objects
Powered by GitBook
On this page
  • add
  • clear
  • get
  • has
  • remove
  1. Documentation

bridge

Allows scripts to communicate between one another.

add

bridge.add(String key, Object value);
bridge.add(String key);

Adds a value to the bridge map.

clear

bridge.clear();

Clears the bridge map.

get

Object value = bridge.get(String key);

Returns the value stored under a specified key.

has

boolean containsKey = bridge.has(String key);

Returns true if the bridge map has a specified key.

remove

bridge.remove(String key);

Removes a value from the bridge map.

Last updated 5 months ago