refac: shorthand name. ResourceController > rsc
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import type { ICityEntity } from "./Entity/CityEntity.js";
|
||||
import { LazyEntityUpdater } from "./LazyEntityUpdater.js";
|
||||
import type { IResourceController } from "./ResourceController.js";
|
||||
import type { IResourceController } from "./IResourceController.js";
|
||||
import type { CityID } from "./defs.js";
|
||||
|
||||
export class City extends LazyEntityUpdater<ICityEntity>{
|
||||
@@ -10,7 +10,7 @@ export class City extends LazyEntityUpdater<ICityEntity>{
|
||||
|
||||
constructor(
|
||||
raw: ICityEntity,
|
||||
protected readonly resourceController: IResourceController
|
||||
protected readonly rsc: IResourceController
|
||||
){
|
||||
super();
|
||||
this._raw = raw;
|
||||
|
||||
Reference in New Issue
Block a user