mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-08 15:56:04 +00:00
15 lines
247 B
Haxe
15 lines
247 B
Haxe
package io.newgrounds.objects;
|
|
|
|
typedef UserIcons = {
|
|
|
|
/**The URL of the user's large icon. */
|
|
var large:String;
|
|
|
|
/** The URL of the user's medium icon. */
|
|
var medium:String;
|
|
|
|
/** The URL of the user's small icon. */
|
|
var small:String;
|
|
}
|
|
|