├── .altv ├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── client ├── entitysync.js ├── index.js └── textlabel-example.js ├── postinstall.js ├── resource.cfg └── server ├── entitysync.js ├── index.js └── textlabel-example.js /.altv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonMrBonnie/altv-os-js-entitysync/HEAD/.altv -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonMrBonnie/altv-os-js-entitysync/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.code-workspace -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonMrBonnie/altv-os-js-entitysync/HEAD/README.md -------------------------------------------------------------------------------- /client/entitysync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonMrBonnie/altv-os-js-entitysync/HEAD/client/entitysync.js -------------------------------------------------------------------------------- /client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonMrBonnie/altv-os-js-entitysync/HEAD/client/index.js -------------------------------------------------------------------------------- /client/textlabel-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonMrBonnie/altv-os-js-entitysync/HEAD/client/textlabel-example.js -------------------------------------------------------------------------------- /postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonMrBonnie/altv-os-js-entitysync/HEAD/postinstall.js -------------------------------------------------------------------------------- /resource.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonMrBonnie/altv-os-js-entitysync/HEAD/resource.cfg -------------------------------------------------------------------------------- /server/entitysync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonMrBonnie/altv-os-js-entitysync/HEAD/server/entitysync.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonMrBonnie/altv-os-js-entitysync/HEAD/server/index.js -------------------------------------------------------------------------------- /server/textlabel-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonMrBonnie/altv-os-js-entitysync/HEAD/server/textlabel-example.js --------------------------------------------------------------------------------