user636207
user636207

Reputation: 286

simplify the creation of a game interface?

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

Answers (2)

Gilberto Torrezan
Gilberto Torrezan

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

Matt Olan
Matt Olan

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

Related Questions