How to decode @export_flags value?
Every checkbox store a number - 1, 2, 4, 8, 16, 32 ...
For example if 2, 3, 5 checkboxes are selected the sum will be 2 + 4 + 16 = 22
Why it's made so hard and how to decode number 22, to get array of selected checkboxes - [2, 3, 5]
@export_flags("self", "ally", "enemy") var target = 0
