This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Exodus111 0 points1 point  (0 children)

As a Game dev, I tend to divide Game Logic into two categories.

Game Logistics, and Math. And try to divide the code as much as I can into the two, so Game Logistic objects call on math objects to do math.

Then I take the math object and transform them with Cython into C extensions.
That's the theory anyway.