What method should I use for making a drag 'n drop based game?

I want to make a small game that plays similarly to Papers Please. Now I’m debating what the best system for drag and drop is. I could make it based on world space, with normal input detection, the update function, etc etc. Or, I can make it with the EventSystem, but I’m not sure which functions to use in there. Most tutorials say to use IDragHandler and such, but in the API for Unity 2020.x those functions don’t exist anymore, although they do work in the engine.

Basically I just need advice. Should I go UnityUI based, or worldspace based? And what functions should I be looking at in case I should go UnityUI based?

Because there is no ‘best method’, I personally would just go with something that I can work & understand.

There is OnDrag method in UnityUI which could be useful in drag n drop game you’re trying to make.