Skip to content

Instantly share code, notes, and snippets.

View FlameHorizon's full-sized avatar
🏠
#stayAtHome

Maciej Piotrowski FlameHorizon

🏠
#stayAtHome
  • Warsaw
View GitHub Profile
@FlameHorizon
FlameHorizon / Coroutines.cs
Last active October 27, 2025 13:25
Example how simple co-routine can be implemented in MonoGame
using System;
using System.Collections;
using System.Collections.Generic;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
namespace Coroutines;