Funkin/source/io/newgrounds/crypto/EncryptionFormat.hx
2020-10-31 20:42:14 -07:00

7 lines
No EOL
132 B
Haxe

package io.newgrounds.crypto;
@:enum
abstract EncryptionFormat(String) to String {
var BASE_64 = "base64";
var HEX = "hex";
}