Skip to main content

My First Game - Bunny Maniac is available now

 Hello guys, as you know I'm a video game developer, I'm always making games and softwares.

So, Today I've got for you my first ever game — "Bunny Maniac" for Android devices, and it's called "Test Project" for Windows and Linux.

It's the same game just with a different name.

It's FREE.


So, please check it out and tell me how you found the game.

My game's page, Please consider paying a visit or downloading from there:

Below are some screens from my game:
Windows/Linux version:



Android version:



Be sure to earn all the awards and prizes in the game.

Download Page:

Note: For android users, your system will probably say that it's from an untrusted source, so it may contain viruses and cause harm, but you don't worry I assure you, it's completely safe to download and play; Android system does that for every app that's not from the Play Store®.

And if you want to see my apps and games published to the Play Store®, consider supporting me on itch.io by buying my game, if you liked it   :)

When you'll click "Download Now", a popup will open and in it, it'll ask for contribution; if you want to download for free, just click "No thanks, just take me to the downloads".

And don't forget to tell me your views on my game on it's page above or in the comments below.

Read other posts of mine(from below) while your game is being downloaded.

Comments

Popular posts from this blog

Bhailang - The language by and for Indian bros!

 Hi folks! If you ever get bored of the same, everyday, hard-coded keyword coding style, take a look here - - a toy language created by two Indian 'bros' - Aniket Singh from Amazon and Rishabh Tripathi from Groww. The language combines "Bhai", a word in Hindi for 'brother' and "lang", short for 'Language', popular in the coding culture, to derive it's name. The developers said "Bhailang" came up as idea from an insider joke. Syntax It is written in TypeScript, and has it's own well-defined syntax, but every statement contains the word 'bhai'. The programs of bhailang begin with a "hi bhai" statement and end with "bye bhai". Bhailang (Source: bhailang.js.org) Keywords Bhailang uses keyword in Hindi language for it's purpose of programming. Numbers and strings are used and created like other languages. While, Boolean values of True and False are represented by "sahi" and "galat...

AtlasApp CLI (v1.0)

Hi Guys, I recently started learning Python and with the little experience I had, I created a small CLI desktop (windows or maybe cross-platform) (Linux and MacOS users please test it and reply) Application. So everyone and anyone reading this blog, please please test it and reply to me how you liked it. I'll be making a GUI version of the same and will keep updating it regularly for betterments. You Can download it from here :   πŸ‘‡         https://drive.google.com/file/d/1kYseZYT2d1QkCUyRk4QKKuhxlLCd4UlO/view?usp=sharing                                                                                                               ...

Hello World in 30 Programming Languages (Part 1)

How many programming languages do you think you know? Think a lot? Let's Check that out... 1. C: The Mother of all modern programming languages C Developed by: Dennis Ritchie Developed in: 1972 HelloWorld.c #include<stdio.h> int main(void){ printf("Hello World!"); return 0; } 2. C++: The Mother's still young and charming daughter C++ (C Plus Plus) Developed by: Bjarne Stroustrup Developed in: 1985 HelloWorld.cpp #include<iostream> using namespace std; int main(){ cout << "Hello World!"; return 0; } 3. C#: The Daughter's quite similar friend C# (C Sharp) Developed by: Anders Hejlsberg and Mads Torgersen Developed in: 2000 HelloWorld.cs using System; namespace HelloWorldApp{ class HelloWorld{ static void Main(strings[] args){ Console.WriteLine("Hello World!"); } } } 4. COBOL: It's Business Class Developed by: US Department of Defense Developed in: 1959 HelloWorld.cbl IDENTIFICATI...