├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .luaurc ├── .moonwave └── static │ ├── Banner.svg │ ├── Favicon.svg │ ├── Hooks.svg │ ├── Middleware.svg │ └── Routes.svg ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── default.project.json ├── dev.darklua.json ├── dev.project.json ├── docs ├── even-more-compression │ ├── _category_.json │ ├── flamework-binary-serializer.mdx │ └── squash.mdx ├── getting-started │ ├── _category_.json │ ├── buffer-compression.mdx │ ├── hooks.mdx │ ├── middleware.mdx │ └── routes.mdx ├── intro.md └── setup │ ├── _category_.json │ ├── ecr.md │ ├── jecs.md │ ├── matter.mdx │ └── other.mdx ├── examples └── matter │ ├── LICENSE │ ├── README.md │ ├── aftman.toml │ ├── assets │ ├── assets.rbxm │ ├── level.rbxm │ ├── lighting.rbxm │ └── terrain.rbxm │ ├── default.project.json │ ├── src │ ├── client │ │ └── systems │ │ │ ├── receiveReplication.luau │ │ │ ├── roombasHurt.luau │ │ │ └── spinSpinners.luau │ ├── game.client.luau │ ├── server │ │ ├── init.server.luau │ │ └── systems │ │ │ ├── mothershipsSpawnRoombas.luau │ │ │ ├── playersAreTargets.luau │ │ │ ├── removeMissingModels.luau │ │ │ ├── replication.luau │ │ │ ├── roombasMove.luau │ │ │ ├── spawnMotherships.luau │ │ │ ├── spawnRoombas.luau │ │ │ └── updateTransforms.luau │ └── shared │ │ ├── components.luau │ │ ├── routes.luau │ │ ├── setupTags.luau │ │ ├── start.luau │ │ └── systems │ │ └── updateModelAttribute.luau │ └── wally.toml ├── foreman.toml ├── lib ├── Bridge.luau ├── Connection.luau ├── Identifier.luau ├── QueryResult.luau ├── SendRequest.luau ├── __mocks__ │ └── mockBridge.luau ├── __tests__ │ ├── Bridge.test.luau │ ├── Identifier.test.luau │ ├── QueryResult.test.luau │ ├── Route.test.luau │ ├── SendRequest.test.luau │ └── serdes.test.luau ├── __utils__ │ ├── mockPlayers.luau │ └── mockRemoteEvents.luau ├── index.d.ts ├── init.luau └── serdes │ ├── datatypes │ ├── custom │ │ ├── array.luau │ │ ├── dictionary.luau │ │ └── identifier.luau │ ├── primitive │ │ ├── boolean.luau │ │ ├── buffer.luau │ │ ├── number.luau │ │ └── string.luau │ └── userdata │ │ ├── BrickColor.luau │ │ ├── CFrame.luau │ │ ├── Color3.luau │ │ ├── DateTime.luau │ │ ├── EnumItem.luau │ │ ├── Instance.luau │ │ ├── Rect.luau │ │ ├── Region3.luau │ │ ├── Region3int16.luau │ │ ├── TweenInfo.luau │ │ ├── UDim.luau │ │ ├── UDim2.luau │ │ ├── Vector2.luau │ │ ├── Vector2int16.luau │ │ ├── Vector3.luau │ │ └── Vector3int16.luau │ ├── init.luau │ └── utilities.luau ├── moonwave.toml ├── package.json ├── pages ├── index.js └── index.module.css ├── publish.darklua.json ├── scripts ├── analyze.sh ├── build.sh ├── dev.sh ├── install-dependencies.sh ├── lint.sh ├── publish-rbxts.sh ├── publish-wally.sh ├── style.sh └── test.sh ├── selene.toml ├── selene_definitions.yml ├── stylua.toml ├── tests ├── jest.config.luau └── startJest.server.luau ├── tsconfig.json ├── typescript.project.json └── wally.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/.gitignore -------------------------------------------------------------------------------- /.luaurc: -------------------------------------------------------------------------------- 1 | { 2 | "languageMode": "strict" 3 | } -------------------------------------------------------------------------------- /.moonwave/static/Banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/.moonwave/static/Banner.svg -------------------------------------------------------------------------------- /.moonwave/static/Favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/.moonwave/static/Favicon.svg -------------------------------------------------------------------------------- /.moonwave/static/Hooks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/.moonwave/static/Hooks.svg -------------------------------------------------------------------------------- /.moonwave/static/Middleware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/.moonwave/static/Middleware.svg -------------------------------------------------------------------------------- /.moonwave/static/Routes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/.moonwave/static/Routes.svg -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/README.md -------------------------------------------------------------------------------- /default.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/default.project.json -------------------------------------------------------------------------------- /dev.darklua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/dev.darklua.json -------------------------------------------------------------------------------- /dev.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/dev.project.json -------------------------------------------------------------------------------- /docs/even-more-compression/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/even-more-compression/_category_.json -------------------------------------------------------------------------------- /docs/even-more-compression/flamework-binary-serializer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/even-more-compression/flamework-binary-serializer.mdx -------------------------------------------------------------------------------- /docs/even-more-compression/squash.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/even-more-compression/squash.mdx -------------------------------------------------------------------------------- /docs/getting-started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/getting-started/_category_.json -------------------------------------------------------------------------------- /docs/getting-started/buffer-compression.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/getting-started/buffer-compression.mdx -------------------------------------------------------------------------------- /docs/getting-started/hooks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/getting-started/hooks.mdx -------------------------------------------------------------------------------- /docs/getting-started/middleware.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/getting-started/middleware.mdx -------------------------------------------------------------------------------- /docs/getting-started/routes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/getting-started/routes.mdx -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/setup/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/setup/_category_.json -------------------------------------------------------------------------------- /docs/setup/ecr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/setup/ecr.md -------------------------------------------------------------------------------- /docs/setup/jecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/setup/jecs.md -------------------------------------------------------------------------------- /docs/setup/matter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/setup/matter.mdx -------------------------------------------------------------------------------- /docs/setup/other.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/docs/setup/other.mdx -------------------------------------------------------------------------------- /examples/matter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/LICENSE -------------------------------------------------------------------------------- /examples/matter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/README.md -------------------------------------------------------------------------------- /examples/matter/aftman.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/aftman.toml -------------------------------------------------------------------------------- /examples/matter/assets/assets.rbxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/assets/assets.rbxm -------------------------------------------------------------------------------- /examples/matter/assets/level.rbxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/assets/level.rbxm -------------------------------------------------------------------------------- /examples/matter/assets/lighting.rbxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/assets/lighting.rbxm -------------------------------------------------------------------------------- /examples/matter/assets/terrain.rbxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/assets/terrain.rbxm -------------------------------------------------------------------------------- /examples/matter/default.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/default.project.json -------------------------------------------------------------------------------- /examples/matter/src/client/systems/receiveReplication.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/client/systems/receiveReplication.luau -------------------------------------------------------------------------------- /examples/matter/src/client/systems/roombasHurt.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/client/systems/roombasHurt.luau -------------------------------------------------------------------------------- /examples/matter/src/client/systems/spinSpinners.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/client/systems/spinSpinners.luau -------------------------------------------------------------------------------- /examples/matter/src/game.client.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/game.client.luau -------------------------------------------------------------------------------- /examples/matter/src/server/init.server.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/server/init.server.luau -------------------------------------------------------------------------------- /examples/matter/src/server/systems/mothershipsSpawnRoombas.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/server/systems/mothershipsSpawnRoombas.luau -------------------------------------------------------------------------------- /examples/matter/src/server/systems/playersAreTargets.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/server/systems/playersAreTargets.luau -------------------------------------------------------------------------------- /examples/matter/src/server/systems/removeMissingModels.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/server/systems/removeMissingModels.luau -------------------------------------------------------------------------------- /examples/matter/src/server/systems/replication.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/server/systems/replication.luau -------------------------------------------------------------------------------- /examples/matter/src/server/systems/roombasMove.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/server/systems/roombasMove.luau -------------------------------------------------------------------------------- /examples/matter/src/server/systems/spawnMotherships.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/server/systems/spawnMotherships.luau -------------------------------------------------------------------------------- /examples/matter/src/server/systems/spawnRoombas.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/server/systems/spawnRoombas.luau -------------------------------------------------------------------------------- /examples/matter/src/server/systems/updateTransforms.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/server/systems/updateTransforms.luau -------------------------------------------------------------------------------- /examples/matter/src/shared/components.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/shared/components.luau -------------------------------------------------------------------------------- /examples/matter/src/shared/routes.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/shared/routes.luau -------------------------------------------------------------------------------- /examples/matter/src/shared/setupTags.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/shared/setupTags.luau -------------------------------------------------------------------------------- /examples/matter/src/shared/start.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/shared/start.luau -------------------------------------------------------------------------------- /examples/matter/src/shared/systems/updateModelAttribute.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/src/shared/systems/updateModelAttribute.luau -------------------------------------------------------------------------------- /examples/matter/wally.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/examples/matter/wally.toml -------------------------------------------------------------------------------- /foreman.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/foreman.toml -------------------------------------------------------------------------------- /lib/Bridge.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/Bridge.luau -------------------------------------------------------------------------------- /lib/Connection.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/Connection.luau -------------------------------------------------------------------------------- /lib/Identifier.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/Identifier.luau -------------------------------------------------------------------------------- /lib/QueryResult.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/QueryResult.luau -------------------------------------------------------------------------------- /lib/SendRequest.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/SendRequest.luau -------------------------------------------------------------------------------- /lib/__mocks__/mockBridge.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/__mocks__/mockBridge.luau -------------------------------------------------------------------------------- /lib/__tests__/Bridge.test.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/__tests__/Bridge.test.luau -------------------------------------------------------------------------------- /lib/__tests__/Identifier.test.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/__tests__/Identifier.test.luau -------------------------------------------------------------------------------- /lib/__tests__/QueryResult.test.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/__tests__/QueryResult.test.luau -------------------------------------------------------------------------------- /lib/__tests__/Route.test.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/__tests__/Route.test.luau -------------------------------------------------------------------------------- /lib/__tests__/SendRequest.test.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/__tests__/SendRequest.test.luau -------------------------------------------------------------------------------- /lib/__tests__/serdes.test.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/__tests__/serdes.test.luau -------------------------------------------------------------------------------- /lib/__utils__/mockPlayers.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/__utils__/mockPlayers.luau -------------------------------------------------------------------------------- /lib/__utils__/mockRemoteEvents.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/__utils__/mockRemoteEvents.luau -------------------------------------------------------------------------------- /lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/index.d.ts -------------------------------------------------------------------------------- /lib/init.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/init.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/custom/array.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/custom/array.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/custom/dictionary.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/custom/dictionary.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/custom/identifier.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/custom/identifier.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/primitive/boolean.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/primitive/boolean.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/primitive/buffer.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/primitive/buffer.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/primitive/number.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/primitive/number.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/primitive/string.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/primitive/string.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/BrickColor.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/BrickColor.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/CFrame.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/CFrame.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/Color3.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/Color3.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/DateTime.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/DateTime.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/EnumItem.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/EnumItem.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/Instance.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/Instance.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/Rect.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/Rect.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/Region3.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/Region3.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/Region3int16.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/Region3int16.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/TweenInfo.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/TweenInfo.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/UDim.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/UDim.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/UDim2.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/UDim2.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/Vector2.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/Vector2.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/Vector2int16.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/Vector2int16.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/Vector3.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/Vector3.luau -------------------------------------------------------------------------------- /lib/serdes/datatypes/userdata/Vector3int16.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/datatypes/userdata/Vector3int16.luau -------------------------------------------------------------------------------- /lib/serdes/init.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/init.luau -------------------------------------------------------------------------------- /lib/serdes/utilities.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/lib/serdes/utilities.luau -------------------------------------------------------------------------------- /moonwave.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/moonwave.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/pages/index.module.css -------------------------------------------------------------------------------- /publish.darklua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/publish.darklua.json -------------------------------------------------------------------------------- /scripts/analyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/scripts/analyze.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/scripts/dev.sh -------------------------------------------------------------------------------- /scripts/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/scripts/install-dependencies.sh -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/publish-rbxts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/scripts/publish-rbxts.sh -------------------------------------------------------------------------------- /scripts/publish-wally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/scripts/publish-wally.sh -------------------------------------------------------------------------------- /scripts/style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/scripts/style.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /selene.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/selene.toml -------------------------------------------------------------------------------- /selene_definitions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/selene_definitions.yml -------------------------------------------------------------------------------- /stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/stylua.toml -------------------------------------------------------------------------------- /tests/jest.config.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/tests/jest.config.luau -------------------------------------------------------------------------------- /tests/startJest.server.luau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/tests/startJest.server.luau -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typescript.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/typescript.project.json -------------------------------------------------------------------------------- /wally.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherClown/YetAnotherNet/HEAD/wally.toml --------------------------------------------------------------------------------