refac: shorthand name. ResourceController > rsc
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import type { IGameEnvEntity } from "./Entity/GameEnvEntity.js";
|
||||
import { LazyEntityUpdater } from "./LazyEntityUpdater.js";
|
||||
import type { IResourceController } from "./ResourceController.js";
|
||||
import type { IResourceController } from "./IResourceController.js";
|
||||
|
||||
export class GameEnv extends LazyEntityUpdater<IGameEnvEntity>{
|
||||
protected readonly _indirectNames: readonly (keyof IGameEnvEntity)[] = [
|
||||
@@ -11,7 +11,7 @@ export class GameEnv extends LazyEntityUpdater<IGameEnvEntity>{
|
||||
|
||||
constructor(
|
||||
raw: IGameEnvEntity,
|
||||
protected readonly resourceController: IResourceController
|
||||
protected readonly rsc: IResourceController
|
||||
){
|
||||
super();
|
||||
this._raw = raw;
|
||||
|
||||
Reference in New Issue
Block a user