You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 07:26:18 +00:00
Move to Renderer V2
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import { NitroEvent } from '../core';
|
||||
|
||||
export class UserNameUpdateEvent extends NitroEvent
|
||||
{
|
||||
public static UNUE_NAME_UPDATED: string = 'unue_name_updated';
|
||||
|
||||
private _name: string;
|
||||
|
||||
constructor(name: string)
|
||||
{
|
||||
super(UserNameUpdateEvent.UNUE_NAME_UPDATED);
|
||||
|
||||
this._name = name;
|
||||
}
|
||||
|
||||
public get name(): string
|
||||
{
|
||||
return this._name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user