fastjengine / FastJ

An open-source, Java-based 2D game engine.
https://fastj.tech
MIT License
82 stars 22 forks source link

[Source Code]: Rename SupportedFileFormats to SupportedModelFormats #69

Closed lucasstarsz closed 3 years ago

lucasstarsz commented 3 years ago

What's Up?

The tech.fastj.graphics.io.SupportedFileFormats class' purpose is to provide a list of supported formats for model reading and writing. It serves its purpose well, but the name can be misleading, and for future purposes is a bit too general. Later on in the future there will be other classes similar to it for other types of files being read, such as audio files.

My recommended solution is to change the class name to SupportedModelFormats, since it is much more representative of what the class is for.

Code of Conduct

AurumByte commented 3 years ago

Hi there! This seems like the perfect issue to get familiar with the internals... i'll PR the necessary changes :)

lucasstarsz commented 3 years ago

Sure thing!