mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-22 23:57:50 -05:00
10 lines
134 B
Haxe
10 lines
134 B
Haxe
package funkin.data;
|
|
|
|
/**
|
|
* A pair of a file name and its contents.
|
|
*/
|
|
typedef JsonFile =
|
|
{
|
|
fileName:String,
|
|
contents:String
|
|
};
|