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