How to communicate two different script verse files to each other.

If I have 2 scripts but want to use := class(creative_device): is there a way to associate one with the other? My main desire is to use @editable in both which needs to be a class with a creative_device.

game_manager.verse

game_manager:= class(creative_device):

    OnBegin<override>()<suspends>:void=
       Foo()

hello_world_device.verse

hello_world_device := class(creative_device):
    Foo():void=
        Print("Hi")

1 Like