how do I include comments with configuration2.INIConfiguration in kotlin?
I have a setting file that's structured as you'd expect.
for example =
[Video]
# 1
framerate limit = 60
# 2
resolution y = 1080
# 3
resolution x = 2316
[Game]
# 4
trainers training skills based on base skill = false
# 5
But no matter what I can I cant get it to return all of the comments with their respective key and value.
I only get the first key only or null
This is the function, at the bottom you can see I'm just pushing the results to logcat to see what its reading and the comment is...