mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-09-01 03:15:53 +00:00
31 lines
606 B
Haxe
31 lines
606 B
Haxe
package funkin.data.stickers;
|
|
|
|
/**
|
|
* A type definition for a sticker pack.
|
|
* It includes things like its name, the artist, and what sticker graphics to use.
|
|
* @see https://lib.haxe.org/p/json2object/
|
|
*/
|
|
typedef StickerData =
|
|
{
|
|
/**
|
|
* Semantic version of the sticker set data.
|
|
*/
|
|
public var version:String;
|
|
|
|
/**
|
|
* Readable name of the sticker set.
|
|
*/
|
|
public var name:String;
|
|
|
|
/**
|
|
* The artist of the sticker set.
|
|
*/
|
|
public var artist:String;
|
|
|
|
/**
|
|
* The stickers in the set.
|
|
* This is simply a list of asset files to use.
|
|
*/
|
|
public var stickers:Array<String>;
|
|
}
|