mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-22 23:50:52 +01:00
Update
This commit is contained in:
parent
6b51193b1d
commit
71ed009129
@ -1,4 +1,4 @@
|
||||
import { NitroLogger } from '@nitrots/utils';
|
||||
import { NitroLogger, NitroVersion } from '@nitrots/utils';
|
||||
import { IConfigurationManager } from './IConfigurationManager';
|
||||
|
||||
export class ConfigurationManager implements IConfigurationManager
|
||||
@ -7,6 +7,11 @@ export class ConfigurationManager implements IConfigurationManager
|
||||
private _config: any = {};
|
||||
private _missingKeys: string[] = [];
|
||||
|
||||
constructor()
|
||||
{
|
||||
NitroVersion.sayHello();
|
||||
}
|
||||
|
||||
public async init(): Promise<void>
|
||||
{
|
||||
await this.reloadConfiguration();
|
||||
|
@ -1,3 +1,4 @@
|
||||
|
||||
export class NitroVersion
|
||||
{
|
||||
public static RENDERER_VERSION: string = '2.0.0';
|
||||
|
@ -1,3 +1,7 @@
|
||||
import { HelloSystem } from 'pixi.js';
|
||||
|
||||
HelloSystem.defaultOptions.hello = true;
|
||||
|
||||
export * from '@nitrots/api';
|
||||
export * from '@nitrots/assets';
|
||||
export * from '@nitrots/avatar';
|
||||
|
Loading…
Reference in New Issue
Block a user