├── .gitattributes ├── .github └── FUNDING.yml ├── README.md ├── electrobots.exe ├── electrobots.ssd ├── electrobots.uef └── res ├── electrobots-intro-screen.jpg ├── screenshot1.png ├── screenshot2.png ├── screenshot3.png └── screenshot4.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0DE6502/electrobots-releases/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0DE6502/electrobots-releases/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0DE6502/electrobots-releases/HEAD/README.md -------------------------------------------------------------------------------- /electrobots.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0DE6502/electrobots-releases/HEAD/electrobots.exe -------------------------------------------------------------------------------- /electrobots.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0DE6502/electrobots-releases/HEAD/electrobots.ssd -------------------------------------------------------------------------------- /electrobots.uef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0DE6502/electrobots-releases/HEAD/electrobots.uef -------------------------------------------------------------------------------- /res/electrobots-intro-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0DE6502/electrobots-releases/HEAD/res/electrobots-intro-screen.jpg -------------------------------------------------------------------------------- /res/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0DE6502/electrobots-releases/HEAD/res/screenshot1.png -------------------------------------------------------------------------------- /res/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0DE6502/electrobots-releases/HEAD/res/screenshot2.png -------------------------------------------------------------------------------- /res/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0DE6502/electrobots-releases/HEAD/res/screenshot3.png -------------------------------------------------------------------------------- /res/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0DE6502/electrobots-releases/HEAD/res/screenshot4.png --------------------------------------------------------------------------------