I Spent 100 HOURS Making a Game With NO GAME ENGINE

Поделиться
HTML-код
  • Опубликовано: 24 ноя 2024
  • ХоббиХобби

Комментарии • 411

  • @lukeplayz8596
    @lukeplayz8596 2 года назад +364

    nice content! love that you moved from a scratch youtuber to a coding youtuber, best of luck!!!

    • @w花b
      @w花b 2 года назад

      Damn, that's pretty cool.

    • @AlienDeveloperYT
      @AlienDeveloperYT 2 года назад +2

      @@urbanevilfr and Coding with chris

    • @Solomonwo
      @Solomonwo 2 года назад

      No

    • @eggomyleggos5247
      @eggomyleggos5247 2 года назад +1

      wait he was in the scratch community? i only just recently started watching him

    • @MESYETI
      @MESYETI 2 года назад +1

      @Puppo it doesnt

  • @cachatt
    @cachatt 2 года назад +185

    Anyone: Java is not created to making games!
    You and Mojang: 🗿

    • @hackanimator12
      @hackanimator12 6 месяцев назад +7

      don't forget gameloft too

    • @ahmede92
      @ahmede92 4 месяца назад

      @@bo4-x2nwell they did it in a bad way, they want to make an engine that runs minecraft everywhere with c++ (the bedrock version)
      That’s why it’s very laggy and buggy, because they stopped optimizing versions for each platform, instead they did an all-in-one bad solution which sucks harder than cyberpunk in its first release

    • @yaelyol
      @yaelyol 2 месяца назад

      🗿

    • @Bliviate
      @Bliviate 2 месяца назад +3

      fun fact: notch used eclipse to code minecraft

    • @ahmede92
      @ahmede92 2 месяца назад +4

      @@Bliviate fun fact: notch also used a PC to code minecraft

  • @Iraxvii
    @Iraxvii 8 месяцев назад +1

    I used that same video to design the engine for the game I've been working on for a few years now. I restarted the engine many times to use opengl and then openal. Cool to see I'm not the only one who got their start in engineless game development from that video

  • @WhatisAPaladin
    @WhatisAPaladin 2 года назад +157

    man for a 15 year old you have talent.. keep it up :)

    • @Blitz61wasd
      @Blitz61wasd 4 месяца назад

      Me who knew backend and frontend, 5 programming languages at 12 years old and never got celebrated💀

    • @luckybeeyt
      @luckybeeyt 3 месяца назад +1

      @@Blitz61wasd I am now 13 but knew that in 12 too 💀💀💀

    • @cirkulx
      @cirkulx Месяц назад

      ⁠@@Blitz61wasd i made a C game engine in SDL2 at 13 (im still 13), now working on an ASCII 3D game engine

    • @Blitz61wasd
      @Blitz61wasd Месяц назад

      @@cirkulx congrats

  • @CreativeSteve69
    @CreativeSteve69 2 года назад +55

    Found ya on my timeline tonight. This was a really enjoyable video to watch. I'm brand new to programming. Learning python to make games with and having fun with it. This encouraged me to keep on going. Hope to see more videos like this.

  • @Titan-8190
    @Titan-8190 2 года назад +82

    I know it was 4 years ago, and that's already a great results, but for anyone using that as an inspiration, there are a few mistakes that beginner should be aware of in the the Game class:
    - Never increment with delta time because inaccuracies build up, always compare to a reference time. (this is important in game logic as well with any game engine)
    - Pass the delta time to your tick function because if your framerate drop your game will slow down. that also allow yout to make frame rate limit optionnal and configurable because most screens go beyond 100Hz nowadays.
    - Never have active wait, your while loop needs to sleep. or just don't limit your frame rate at all because you are not saving CPU cycle anyway by adding up nanoseconds instead of running tick.

    • @birbylikesfox1032
      @birbylikesfox1032 2 года назад +1

      it doesnt really change wether u put it in tick or run, at the end of the day the tick function would be carried out at the same rate,that is, (now - last time), which varies with the delta variable. I still use the same way and the frames work pretty fine

    • @volkov3310
      @volkov3310 2 года назад +1

      @@birbylikesfox1032 no.
      You should pass and use dt to calculations.
      Different machines have different components with different performance. So tie game code to framerate is stupid. Tie it to delta time instead.

    • @ozanmrcan
      @ozanmrcan 5 месяцев назад

      delta is probably a Game member variable so tick() has access to it

  • @arch7620
    @arch7620 2 года назад +110

    show some emotion bro i'm scared

  • @r3ktcuzicanm835
    @r3ktcuzicanm835 2 года назад +10

    Man this is sick, I took an intro CS class this year and we used a game engine called Game Maker, but halfway through I got bored and taught myself a bit of Python, and switched to JavaScript, made an online game with JS, and it was all because I was motivated by youtubers like you, keep killing it! It changes lives!

  • @alteratio1978
    @alteratio1978 2 года назад +19

    I love how i've come from watching your how to make an rpg game vids, to these videos that look really professional, keep up the good work!

  • @DiacoTaaeb
    @DiacoTaaeb 2 года назад +24

    Man, this is the best game video I’ve ever seen!
    The editing is soo good! You’ve come so far!

  • @Fuelvin
    @Fuelvin  2 года назад +93

    Hope you guys enjoyed this video! How do you think my game turned out?
    Want to learn how to make a game like mine? Check out my course here!
    www.fuelvin-academy.com/
    Join my Discord for announcements, sneak peeks, and more! discord.gg/QXWMrSNg38

  • @Anula993
    @Anula993 2 года назад +120

    Eclipse is just an IDE. Comparing it to Unity doesn't really make that much sense. It would make more sense to compare it to VSCode.
    That said, if the only requirement was for this to be written in Java (they can't really enforce this Eclipse part - you could have just imported it as a project at the very end but write the whole thing in vim. Not that I would suggest that with Java) why not use some game-related libraries? Eg. for collision detection. There are some of them out there, eg. LWJGL

    • @kigamezero8636
      @kigamezero8636 2 года назад +32

      Yeah, I was gonna mention that.
      Searching "how to make games in Eclipse" doesn't yield anything since it's just an IDE. It's the equivalent of "how to write a story in Google Docs."
      But I do remember being confused about these things when I first started learning about coding. Things are a blob for the longest time until it clicks.

    • @BaxzXD
      @BaxzXD 2 года назад +2

      because making your own stuff is fun

    • @kigamezero8636
      @kigamezero8636 2 года назад +4

      @@BaxzXD oh, fs. We're not saying it's a bad idea. It's just that the comparison isn't really fair since the two have different purposes.

    • @rorymax
      @rorymax 2 года назад +7

      And IDE is a fully fledged IDE. You have tools, plug-ins, and it’s a fancy environment to write code in. No idea what this guy was talking about

    • @onebigsnowball
      @onebigsnowball 2 года назад +1

      It's a basic 2D RPG. Why use a hardware rendering game engine for something that could've existed in 1990

  • @dousuketoby1731
    @dousuketoby1731 2 года назад +1

    Bro you are a genius and you need to acknowledge that right now

  • @KaydenAP
    @KaydenAP 2 года назад +8

    Love it warfame! You're very good at this 👍

  • @hugoblommaskog7268
    @hugoblommaskog7268 2 года назад +26

    You compare making a game in Unity with making a game in Eclipse. One is a Game Engine, the other is an IDE. You could have used Eclipse together with a Java Game Engine such as libGDX or jMonkeyEngine (fact that you use Eclipse doesn't matter for the result). It got difficult because you chose to not use any game engine in Java

  • @philovidya8567
    @philovidya8567 2 года назад +3

    I did the exact same thing in my ap compsci class when I was a junior in high school. I had a whole semester to work on my game and I ended up making a Zelda-like. It was supposed to be a group project but I ended up doing the entire project except for the music all by myself. The premise was that you were a student who had been kidnapped by our teacher and locked in his basement and you had to go room to room fighting monsters and solving puzzles to find your way out. Now that I make games in godot I realize just how difficult it was comparatively to make a video game in Java.

  • @UndeadAlv
    @UndeadAlv 2 года назад +1

    This was funny in a sense I didn’t understand
    And also engaging
    Good video lmao
    I need that patience because recently it’s hard for me to study

  • @CarlosAMaldonado
    @CarlosAMaldonado 2 года назад +20

    Back when I was in college I took a “introduction to programming “ class, where I had to make a videogame using just python and some graphic/“game” library (pygame) which made it easier than starting from 0, but at that time I had some experience with Unity already, and going back from unity to write line by line in sublime text/vs code was really awful lol.
    At the end I got an atari game clone but it wasn’t that good.

    • @logosking2848
      @logosking2848 2 года назад +3

      so basically you lack the skill to make a raytracing algorithm from scratch? :( idk get better lol. and before you ask, yes, i did

    • @CarlosAMaldonado
      @CarlosAMaldonado 2 года назад +7

      @@logosking2848 not everyone has the skills to build and entire engine, I majored in animation and vfx, not in programming or cs, I use Unity bc I know how to use it and how to code in c#, and I’m not gonna learn how to make an engine because there are a lot of good engines out there already, Unity, Unreal, Godot, you don’t have to invent the wheel again and again, that’s pointless

    • @incomprehensible3945
      @incomprehensible3945 2 года назад +1

      @@logosking2848 top 10 who asked moments

    • @logosking2848
      @logosking2848 2 года назад +1

      @@CarlosAMaldonado I was joking dw.

    • @cleiand5868
      @cleiand5868 2 года назад +2

      *laughs in pure python(no libraries)*

  • @ageingdragon8132
    @ageingdragon8132 Год назад +1

    your voice changed daaaaaaaamn
    keep up the good work

  • @Futurisu
    @Futurisu 2 года назад +1

    I remember following your zombie shooter video back in 2017. That was my first memory to coding, and that was from your video. Thank you.

  • @Totally_Bonkers
    @Totally_Bonkers 2 года назад +1

    An actual good sponsor. Straight to the point, and actually related to the video in a way.

  • @crowleyeusford7886
    @crowleyeusford7886 2 года назад +3

    I used to develop my games in java with eclipse (ya i like sufferin' myself). Then i instantly decided to use a game engine and im happy with that. Coding your own game engine will not worth unless you have some specific reasons.

  • @pastorslant
    @pastorslant 2 года назад +1

    Sure wish my school had offered classes like that... Our only computer classes taught how to type and use Microsoft office.

  • @gamingwithevuthepro4671
    @gamingwithevuthepro4671 Год назад +4

    Grass is a plant with narrow leaves growing from the base. A common kind of grass is used to cover the ground in places such as lawns and parks. Grass is usually the colour ‘green’. Grasses are monocotyledon, herbaceous plants. The grasses include the "grass", of the family Poaceae (also called Gramineae). Also sometimes it is used to include the sedges (Cyperaceae) and the rushes (Juncaceae).[1] These three families are not closely related but belong to different clades in the order Poales. They are similar adaptations to a common life-style. The true grasses include cereals, bamboo and the grasses of lawns (turf) and grassland. Uses for graminoids include food (as grain, sprouted grain, shoots or rhizomes), drink (beer, whisky), pasture for livestock, thatching thatch, paper, fuel, clothing, insulation, construction, sports turf, basket weaving and many others. Many grasses are short, but some grasses, like bamboo can grow very tall. Plants from the grass family can grow in many places and make grasslands, even if they are very cold or very dry. Several other plants that look similar but are not members of the grass family are also sometimes called grass; these include rushes, reeds, papyrus, and water chestnut. Seagrass is a monocot in the order Alismatales. Grasses are an important food for many animals, like deer, buffalo, cattle, mice, grasshoppers, caterpillars, and many other grazers. Unlike other plants, grasses grow from the bottom, so when animals eat grass they usually do not destroy the part that grows.[2] This is a part of why they are successful. Without grass, earth may wash away into rivers (erosion).

  • @Secret666
    @Secret666 2 года назад

    The first time I've ever seen a sponsor that is actually worth looking into, I've bought a lot of GDTV courses on Udemy (they go on sale A LOT!) But they are all pretty much aimed at beginners.

  • @HWeingard
    @HWeingard 2 года назад +2

    I couldn’t help but laugh when I heard eclipse called bare bones software. :-). Good job on your project!

  • @birbylikesfox1032
    @birbylikesfox1032 2 года назад +5

    Great video! I can see the inspiration of some of the concepts from CodeAndMore. I also started my java game dev journey with those tutorials. I hope those kind of series would be more available because there is a shortage of java game devs
    Tip: u dont need to understand how the gameloop works. Once you start making more games,you will eventually understand it! Tho if anyone want i can explain it in the replies

    • @ifyoustaywithmeyouwillneve1678
      @ifyoustaywithmeyouwillneve1678 2 года назад

      I'm planning to learn to code games, while Java is not one of my first options would that explaining help with other languages. Right now I have very basic knowledge about coding and stuff btw

  • @sharbel288
    @sharbel288 5 месяцев назад +2

    Java is not USED usually when making games but the language itself is powerful and really good for everything game related such as graphics. But there is no problem making a game with java.

  • @JimLStone
    @JimLStone 2 года назад +2

    I remember my computer science class I made a game in eclipse for fun and showed it to my teacher. She literally didn't give a shit and that made me so upset.

  • @TamuraSteam
    @TamuraSteam 2 года назад +1

    This is very impressive, I wish I had an opportunity to do something like this when I was younger

  • @Cinarbayramic
    @Cinarbayramic 3 месяца назад +1

    Why eclipse when intellij exists😭 i can* feel your pain

  • @rungeon83
    @rungeon83 2 года назад +1

    looking at the code made me wanna cry but when you said "9th grade" i'd be like "Fooking geninus!!" Just awesome, I'm a fan!

  • @gamertronky8648
    @gamertronky8648 2 года назад +17

    I love coding games without engines... All my games are created without engine. The first game I made has 4000 lines of code in python.

  • @L3RNA3AN
    @L3RNA3AN 2 года назад +2

    Reminds me of my first semester in degree college where my teacher wanted us to make a text-based game. I tried hardcoding it in C++ but in vain and I had to eventually make use of a third party software that allowed us to make such games easily.
    Seeing this video motivates me to hardcode something on my own again.

  • @personguyguy
    @personguyguy 2 года назад

    dang you are like the only reason I have hope of getting a full time job with my simple skills in coding (it helps me just knowing there's other people in the same place I am in right now)

  • @dekriel119
    @dekriel119 2 года назад +2

    from scratch to java, that's what I like to see! Stay strong!

  • @iOverThoughtThis
    @iOverThoughtThis 2 года назад +2

    holy... you consider eclipse to be bare bones?!

  • @stysan
    @stysan 2 года назад

    YOU ARE DUCKING WARFAME WHAT YOU UPGRADED SO MUCH LOOOOOOL I FEEL THAT NOSTALGIC ENERGY LKSODJDJDK

  • @ButteryCowEgg
    @ButteryCowEgg 2 года назад +5

    I think imma try doing something like this in Java. Seems like pretty good experience

  • @the-moocow
    @the-moocow 2 года назад +2

    Eclipse is just the IDE. It's independent of the "game". The game is just Java, the code is the same in VS Code, Intellij, Netbeans, etc...

  • @memevoid4348
    @memevoid4348 2 года назад +2

    I like your editing style , very nice and neat

  • @dromedda6810
    @dromedda6810 2 года назад +8

    i mean, eclipse is an ide, and doesnt really have anything with what libraries and api's you use?
    either way really enjoyed it! it took me back to HS when i was making software for the ti-84 calculator

  • @Bozemoto
    @Bozemoto 2 года назад +1

    Might want to use some kind of sleep method instead of a "busy wait". Basically tell the PC that you don't need to do anything for a few milliseconds instead of constantly getting the delta and checking it. There's a minimum time that you can sleep though that's OS dependent so if the time remaining on the frame is less than that you can do the busy wait instead.

  • @mikekun1407
    @mikekun1407 2 года назад

    Getting sum JDH vibes from this vid 👨🏼‍💻
    Live it

  • @markpdyson
    @markpdyson 2 года назад

    Loving the Dankpods music in the background

  • @jaysonbunnell8097
    @jaysonbunnell8097 2 года назад +1

    I'm a fan of the battle mechanics! Nice job!!!

  • @NitratedFilms
    @NitratedFilms 2 года назад +1

    Finally, Warfame has a new video!

  • @peacefuldeityspath
    @peacefuldeityspath 2 года назад +1

    Crystal Soldier: Amazing job warframe! :D i hope you post more tutorials like this in the future and right now im learning Unity and C#. and 2d game development in java =))

  • @davesiarez3887
    @davesiarez3887 2 года назад

    Bro we almost have the same experience, i also coded a game using only html css and js. The only difference is there's already a lot of tutorials but i swear i only copied what was needed and do everything from scratch so i learned fundamental game dev stuff like u did.

  • @-nj
    @-nj 2 года назад

    I've used Eclipse in the past and made a game for roku. Really fun project ngl.

  • @eliotyt9305
    @eliotyt9305 2 года назад

    I watched your content since your shooter tutorial, and comparing this and that video, a lot has change for good. Great improvements, il just miss the old name.

  • @Wyatt392
    @Wyatt392 2 года назад

    I am just over half way done with a C# coding course and these videos are make me want to make my own games👍

  • @Grinwa
    @Grinwa 2 года назад

    I really really enjoy playing around with object oriented programming languages
    It makes me feel better

  • @mike2ykme
    @mike2ykme 2 года назад +3

    Wait did you just say eclipse is not a full featured editor? Like my dude, that’s a whole IDE versus a modular text editor like VS code.

  • @gunman1299
    @gunman1299 2 года назад +3

    Fun Fact: Minecraft: Java Edition was initially developed using just Eclipse and LWJGL (a java game library).

    • @TheKodeToad
      @TheKodeToad 2 года назад

      It's still developed in Java to this day

    • @milo20060
      @milo20060 2 года назад

      The latest minecraft "Bedrock" which is multiplatform and is written in C++

    • @TheKodeToad
      @TheKodeToad 2 года назад

      @@milo20060 Java edition is still developed

  • @D-ingus
    @D-ingus 2 года назад

    It feels like your staring onto my soul throughout the video

  • @reachec7545
    @reachec7545 2 года назад

    bro dropping jokes with a straight face, instant sub

  • @isocup_
    @isocup_ 2 года назад

    Bro you definietly deserve more subs! Keep up the good work man! 👍

  • @NewSchattenRayquaza
    @NewSchattenRayquaza 2 года назад

    Thank you so very much for sharing your progress :)

  • @legendarymaster9005
    @legendarymaster9005 2 года назад +5

    It is difficult, but that's why IT companies like project in Java/CPP during interviews, because they know if you can make game in Java in eclipse editor, you know everything from scratch and you can make it in anywhere else.

    • @somerando6399
      @somerando6399 2 года назад

      Most IT companies wouldn't really care about the text editior/IDE especially for interviews; However creating a portfolio is pretty good for getting a job

  • @caden5936
    @caden5936 2 года назад +1

    You better have gotten a 100% on this project holy cow

  • @__Plasma
    @__Plasma 2 года назад +1

    Me: "I only play games thats made in C++"
    Me: "well.."

  • @allanbru6068
    @allanbru6068 2 года назад +4

    As someone who loves overcomplicating stuff, I feel very related to this content. Obviously you could have saved a lot of time by using game engines, but it wouldn't be as rewarding as it was, and I'm sure you developed your programming skills significantly this way, probably that's why you got so much into it.
    I'm certain that from that moment on, you decided that you wanted to work 24h/day with a few coffee breaks hahahah

    • @hamu_sando
      @hamu_sando 2 года назад

      What they did was acceptable for a uni project but if you get a job writing code then you'll realise there are deadlines to meet and no hours/days/weeks to waste on implementing your own low quality version of a free (libre)/open source software library that you can import and start using in 10 seconds.

  • @SteinBee
    @SteinBee Год назад

    this was fun to watch. Im doing somthing similer in C++

  • @purplepandas18
    @purplepandas18 2 года назад

    xD your voice sounds like a text to speech bot, love your content keep it up!

  • @Yay2ew
    @Yay2ew 2 года назад +1

    Bro are you a robot like for real

  • @onealonestudios
    @onealonestudios 2 года назад

    I would love it when you start making Unity tutorials!!

  • @hattu2374
    @hattu2374 2 года назад

    Great video! This guy is so underrated.

  • @bonestudios7777
    @bonestudios7777 7 месяцев назад +1

    nice vid

  • @noahr.lombardi8821
    @noahr.lombardi8821 2 года назад

    I came up with a solution before he said it, it could check if the player is on a collidable tile, it moves the player back before rendering.

  • @dripthanos5595
    @dripthanos5595 2 года назад

    1:33 "the most popular game development courses on Utimy"

  • @ryonagana
    @ryonagana 2 года назад +2

    in my opinion this is the right way to create games, i still use a graphical lib + c++ or C
    or pure java like what notch did

    • @marcely1199
      @marcely1199 2 года назад

      To be exact, Notch hasn't been working with pure Java. Minecraft is using a library called LWJGL (rendering engine) that uses JNA to hook into C code for communicating directly with the hardware. Further libraries, such as Netty (for networking), also partly uses JNA interfaces for greater performance

    • @ryonagana
      @ryonagana 2 года назад

      @@marcely1199 yup. i mean without using ready for use engines.. like unity godot, unreal
      even using libs you also need to code everything from scratch, lwgl doesnt do magic tricks

  • @NunyaBizznezz6969
    @NunyaBizznezz6969 2 года назад

    I jump into Java and make nonsense sometimes, love the content. Subbed

  • @bandana_bloxYT
    @bandana_bloxYT Год назад

    why is this guy so underrated
    why
    pls
    tell
    me
    WHY!!!!!!!

  • @yumauva3260
    @yumauva3260 2 года назад

    Ima download it thanks for sharing!!

  • @armagidonmc9315
    @armagidonmc9315 2 года назад +1

    Pls, someone tell him that eclipse is just pretty old ide, it's not a game engine, it doesn't have any systems in it, it doesn't have ecosystem for deving anything, it's just editor.

  • @wawdwwd2406
    @wawdwwd2406 2 года назад

    A pro tip, if you want to avoid making a source folder for the assets, right-click on your project name -> New -> Folder and call it "res". Then, right-click the project name again but this time go to Properties -> Java Build Path -> Classpath, and then you press the button with the text "Add Class Folder". Once you're prompted with a popup, click the checkbox next to the folder you've made.

  • @zhabiboss
    @zhabiboss 2 года назад +2

    Fun fact: Minecraft was also created with no GE, like he did, but in 3d

  • @dumcatgaming
    @dumcatgaming 2 года назад

    holy shit i havent seen this channel in a good 2 years

  • @clementseadzi1163
    @clementseadzi1163 2 года назад

    your in your attic... but that audio is the best bro

  • @toonverse6475
    @toonverse6475 2 года назад +1

    keep making content like this lol. maybe devlogs???? :)))

  • @caisschraudenbach7588
    @caisschraudenbach7588 2 года назад

    It would be so cool if you built onto this game and made a shop and other stuff

  • @sirionblatt
    @sirionblatt 2 года назад +4

    I love how he just randomly roasts Eclipse from time to time

  • @ExtraNullByte
    @ExtraNullByte 2 года назад +2

    There's just no need to roast Eclipse - it's an IDE to write code, ofc it doesn't have any game making features in it, none IDEs do - like VSCode or Intellij too -
    you could write your game in notepad with java and compile it down to bytecode - that's what an IDE does for you and handle syntax and such, you load images in with code and handle all functionality with code.
    now if you were really planning on doing something fancy, you can write Eclipse plugins that would be able to generate content for you, handle images and whatnot, but you have to code it haha, Eclipse is very flexible but far from perfect.
    anyway good video - good job on writing a game from scratch and not using game engines!

    • @rosux5540
      @rosux5540 2 года назад

      eclipse has nothing to do with the game itself. its just a tool used to edit files/code and some editors or ide's have cool features that can speed up and make the process easy

  • @jerrictupaz5827
    @jerrictupaz5827 2 года назад

    You really good at explaining thank you

  • @Nyghtfall
    @Nyghtfall 2 года назад

    very nicely done! I hope you got an A for your project!

  • @nick14147
    @nick14147 2 года назад +1

    Will there be more videos coming to Scratch?

  • @svartty8758
    @svartty8758 2 года назад

    dude, this is amazing!!

  • @n8dev
    @n8dev 2 года назад

    Good stuff! Making engines is fun 🙌

  • @devjr.8414
    @devjr.8414 2 года назад

    I will try suffering like you ^_^.
    Nice video

  • @popaandrei4521
    @popaandrei4521 2 года назад

    This is really really nice tbh. But when it comes to handling ads and in game payments the engine really comes in handy

  • @CommanderAka
    @CommanderAka 2 года назад +1

    Still feels weird seeing your account changed to Fuelvin

  • @ranqom02
    @ranqom02 2 года назад

    this deserves for views man.

  • @rudyfaile
    @rudyfaile 2 года назад +1

    At the beginning of the video, how are you comparing Eclipse to VS Code like it was some big drawback that you had to use Eclipse? VS code is a text editor, Eclipse is a fully fledged IDE with an emphasis on Java.

  • @theirishgamer10
    @theirishgamer10 Год назад

    You are underrated like WOW

  • @enochkang9171
    @enochkang9171 2 года назад

    You got sponsored! Let's goooooo!

  • @Mr_Ioannis
    @Mr_Ioannis 2 года назад

    Dude holds the record for most times said "game" In one RUclips video

  • @kour3l
    @kour3l 2 года назад +1

    Actual video title: I remade Undertale with no game engine.

  • @kindacooltho284
    @kindacooltho284 2 года назад +2

    Oh my god brother u must be a coding genius.

  • @mahmoudawd7846
    @mahmoudawd7846 2 года назад

    it worked! thank you so much!!