2D game programming tutorials in C#

前端 未结 5 1017
忘了有多久
忘了有多久 2021-01-31 12:08

I want to learn about programming 2D games in C#. What are the best tutorials that are beginner oriented, written for C#, and preferably use GDI+ (or something equally simple)?

5条回答
  •  旧巷少年郎
    2021-01-31 12:23

    I would start with learn a little object oriented architecture - this is a key to your ultimate success.

    Then learn how to design the model - the entities in the game (characters and etc) in code and the view - the 2D representation of them, and how to connect the two (data and command binding).

    I would try using WPF and not GDI+.

    The code project has a lot of good articles for beginners.

提交回复
热议问题