hey I’m writing an android app to play a simple card game (Dutch Blitz) I have a simple algorithm already made but I was wondering if I needed to run AI’s as a new Thread or somehow integrate it into the main thread, or if anyone else has some good idea’s I would love to hear them…
thanks for any ideas!
Yes as this is very simple card game you can either use main thread for AI or else use a separate thread for it. Both will show the same performance as the logic of AI would not be so complex 🙂