refactor(sounds): Rewritten code for sound to ogg

Now SoundPlayer class supports only .ogg files instead of wav file which
can reduce the final .jar file size drastically. It uses library.
This commit is contained in:
2025-03-27 21:39:12 +01:00
parent a84d3bec00
commit 433dbf6f96
33 changed files with 107 additions and 40 deletions

View File

@ -128,6 +128,11 @@
<artifactId>logback-classic</artifactId>
<version>1.5.18</version> <!-- latest at the time -->
</dependency>
<dependency>
<groupId>com.github.trilarion</groupId>
<artifactId>java-vorbis-support</artifactId>
<version>1.2.1</version>
</dependency>
</dependencies>
</project>