mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-08 15:56:04 +00:00
20 lines
354 B
Haxe
20 lines
354 B
Haxe
package io.newgrounds.objects;
|
|
|
|
typedef User = {
|
|
|
|
/** The user's icon images. */
|
|
var icons:UserIcons;
|
|
|
|
/** The user's numeric ID. */
|
|
var id:Int;
|
|
|
|
/** The user's textual name. */
|
|
var name:String;
|
|
|
|
/** Returns true if the user has a Newgrounds Supporter upgrade. */
|
|
var supporter:Bool;
|
|
|
|
/** The user's NG profile url. */
|
|
var url:String;
|
|
}
|