1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-12-29 08:16:58 +00:00
Funkin/source/io/newgrounds/crypto/EncryptionFormat.hx

7 lines
132 B
Haxe
Raw Normal View History

2020-11-01 03:42:14 +00:00
package io.newgrounds.crypto;
@:enum
abstract EncryptionFormat(String) to String {
var BASE_64 = "base64";
var HEX = "hex";
}