├── .eslintrc ├── .gitignore ├── .prettierrc ├── README.md ├── Sectors.psd ├── config.example.json ├── mask.png ├── package.json ├── sectors.json └── src ├── LeagueAPI.class.js ├── index.js ├── ndi.js └── ndi_worker.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/README.md -------------------------------------------------------------------------------- /Sectors.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/Sectors.psd -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/config.example.json -------------------------------------------------------------------------------- /mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/mask.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/package.json -------------------------------------------------------------------------------- /sectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/sectors.json -------------------------------------------------------------------------------- /src/LeagueAPI.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/src/LeagueAPI.class.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/src/index.js -------------------------------------------------------------------------------- /src/ndi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/src/ndi.js -------------------------------------------------------------------------------- /src/ndi_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dan-Shields/League-OCR-HUD/HEAD/src/ndi_worker.js --------------------------------------------------------------------------------