Thanks.
HackerHenry
24
Posts
2
Topics
9
Followers
A member registered May 20, 2020 · View creator page →
Creator of
Fast paced platformer game with bossfight
Platformer
Play in browser
NightBlub is a Neon Themed Pinball game with interesting mechanics. Made with Godot.
Recent community posts
Guenter Longarms - Yeti hunter comments · Replied to LinuxRant in Guenter Longarms - Yeti hunter comments
Guenter Longarms - Yeti hunter jam comments · Replied to SaSaKar in Guenter Longarms - Yeti hunter jam comments
Guenter Longarms - Yeti hunter jam comments · Replied to Feriga in Guenter Longarms - Yeti hunter jam comments
Guenter Longarms - Yeti hunter jam comments · Replied to ResenhaDoBar in Guenter Longarms - Yeti hunter jam comments
Guenter Longarms - Yeti hunter jam comments · Replied to MakePlay Dev in Guenter Longarms - Yeti hunter jam comments
Guenter Longarms - Yeti hunter jam comments · Replied to Ahnaf30e in Guenter Longarms - Yeti hunter jam comments
Guenter Longarms - Yeti hunter comments · Replied to MalanaDigital in Guenter Longarms - Yeti hunter comments
Guenter Longarms - Yeti hunter comments · Replied to MH_ch4mp in Guenter Longarms - Yeti hunter comments
GDevelop Game Jam #3 community · Created a new topic My game is released: Guenter Longarms - Yeti hunter
Welcome everyone!
If you have suggestions or ideas on how to improve GasStation, please leave a comment in the comment section.
All suggestions are welcome.
Happy coding!
HackerHenry - the dev
ps:
Tip of the day: How to add assembly to c++
Cpp/C File:
extern "C" return_type function_name(); // C++ extern return_type function_name(); // C
Command:
g++ -c file.cpp -o file.o # C++ gcc -c file.c -o file.o # C as asm.S -o asm.o # ASM g++ asm.o file.o -o file.executable # C++ gcc asm.o file.o -o file.executable # C