mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2025-02-18 19:02:35 +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';
|
import { IConfigurationManager } from './IConfigurationManager';
|
||||||
|
|
||||||
export class ConfigurationManager implements IConfigurationManager
|
export class ConfigurationManager implements IConfigurationManager
|
||||||
@ -7,6 +7,11 @@ export class ConfigurationManager implements IConfigurationManager
|
|||||||
private _config: any = {};
|
private _config: any = {};
|
||||||
private _missingKeys: string[] = [];
|
private _missingKeys: string[] = [];
|
||||||
|
|
||||||
|
constructor()
|
||||||
|
{
|
||||||
|
NitroVersion.sayHello();
|
||||||
|
}
|
||||||
|
|
||||||
public async init(): Promise<void>
|
public async init(): Promise<void>
|
||||||
{
|
{
|
||||||
await this.reloadConfiguration();
|
await this.reloadConfiguration();
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
export class NitroVersion
|
export class NitroVersion
|
||||||
{
|
{
|
||||||
public static RENDERER_VERSION: string = '2.0.0';
|
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/api';
|
||||||
export * from '@nitrots/assets';
|
export * from '@nitrots/assets';
|
||||||
export * from '@nitrots/avatar';
|
export * from '@nitrots/avatar';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user