Funkin/source/funkin/data/JsonFile.hx
2024-03-26 12:33:54 -04:00

10 lines
134 B
Haxe

package funkin.data;
/**
* A pair of a file name and its contents.
*/
typedef JsonFile =
{
fileName:String,
contents:String
};