rbx-net icon indicating copy to clipboard operation
rbx-net copied to clipboard

Compile time _NetManaged folder content

Open MayGo opened this issue 1 year ago • 0 comments

Trying to solve the problem described in https://github.com/roblox-aurora/rbx-net/issues/78. Currently, all networking objects are created when code is run from the definitions object Not sure this can be done with typescript - to create files from definitions object with typescript transformer in compile time. But surely we can create separate files and add transform to that?

For example(not actual implementation): fileName: toggleCampaignStartButton.ts

@Definitions.ServerToClientEvent
interface {
   show: boolean;
}

MayGo avatar Sep 09 '22 06:09 MayGo