1import { NodeDefinition } from "./Nodes";
2import { NodeOSCActionsSendChatbox } from "./OSCActions/Send Chatbox";
3
4export let NodeOSCActions: NodeDefinition = {
5 isSingle: false,
6 name: 'OSC Actions',
7 items: [
8 NodeOSCActionsSendChatbox
9 ]
10}