mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-15 19:33:36 +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
|
||
|
};
|