Gamedev is Easy

JPDev@programming.dev to Programmer Humor@programming.dev – 427 points –

Transcript

var game = new Game()
  .EnableMultiplayer()
  .EnableSpatialAudio()
  .SetPerformance(Game.Performance.HIGH)
  .ForEachBug(Bug::AutoFix)
  .GetWishlists(7000);

game.Release();
35

You are viewing a single comment

Another dev who forgot to .AddGameplay()

I assume that's part of the constructor?

Should really start practicing dependency injection, so you can create any kind of gameplay you want easily!