Wizirdi Downloads

File Repository

Download indie game source code, executables and assets

Game Files

Download source code, assets and executables for indie games.

Dev Tools

Useful tools and utilities for game development.

About Wizirdi

Who We Are

Wizirdi is a small indie game development studio focused on creating unique gaming experiences with pixel art aesthetics and engaging gameplay mechanics.

0 Files
0 Downloads
4 Years

Our Mission

We believe in open source game development and sharing resources with the community. All our code is freely available for anyone to use, modify, and learn from.

By sharing our work, we hope to inspire and support the next generation of indie developers while fostering innovation in the game development community.

01 class Wizirdi {
02 constructor() {
03 this.games = [];
04 this.tools = [];
05 this.passion = "infinite";
06 }
07
08 createGame(idea) {
09 const game = new Game(idea);
10 this.games.push(game);
11 return game;
12 }
13
14 shareWithCommunity() {
15 // Open source everything we create
16 this.games.forEach(game => {
17 uploadToRepository(game);
18 });
19
19 }
20 }