✅ Creating interactive objects in Blazor

So i decided to pick up Blazor and to that end, I decided to port a winforms game i made to a blazor webassembly app. The problem i am facing is that i am unsure how to create the objects for the game. For reference, it is a brick breaker game where there are bricks, a bat, walls and the ball. On winforms i used the System.Drawing extension to get this done, and used a collision detection on the ball to rebound when they contact any of the components. I'd like to know how i can draw these ibjects on blazor ty.
Was this page helpful?