Furkan125 said:
Do you think it would be possible to add the feature of breaking the blocks on the map to this game? Is there anything preventing this?
Without reading the code, it's possible. What can be done or cannot be done is completely decided by the code. Thus if you change the code in an appropriate way, anything you wish can happen.
(To be precise, anything that is computable fast enough that is. Computers are fast but they do have a finite speed, so it's possible that a result takes a long time to calculate (like “what is the question to the answer 42” in the 'Hitch hiker guide to the Galaxy').
In practice, some changes are simple, while others are less simple. The upper limit is “impossible” only because “it's too much work”. Any code makes assumptions on what are stable features. If you try to change such a stable feature anyway, that code simply collapses. You can still do it, but it means rewriting a lot of the code (upto “everything”, ie it's simpler to write it again from scratch). A little thinking ahead before starting to write code usually prevents problems (at lat least avoids them).