How do I import the engine_networking_files from my projects main code?

I am looking at the DropListener.ts file in the engine and it has a line:

import * as files from "../engine/engine_networking_files";

I want to use the methods in this but when I try to import it, I can’t find it anywhere.

import * as files from "@needle-tools/engine/engine_networking_files";

Where should I import this definition from in my ‘user’ code, outside of the engine.

Original Post on Discord

by user 563549194137239552

You’re missing one engine folder

import * as files from "@needle-tools/engine/engine/engine_networking_files";

Ahhhh! this will apply in a bunch of other cases i have run into

by user 563549194137239552