Reputation: 286
I need to develop a small game in java. I thought to do it using awt/swings.
Is there any interface or package that simplifies or provides gaming interface in java?
Upvotes: 1
Views: 95
Reputation: 5277
I recommend PlayN:
PlayN is a cross-platform game abstraction library for writing games that compile to: Desktop Java, HTML5 Browsers, Android, iOS and Flash.
It comes with a lot of useful stuff focused on gaming, like animations, sound layer, game loop and so on. It is good for you even if you don't want to go to mobile or browsers (in my opinion, you should, but it's up to you).
Upvotes: 2
Reputation: 1959
Every game I have made for Java (not that many) has used AWT/Swings for the interface library. It's easy to use and fast to develop on, so I would recommend it.
Upvotes: 0