refac: shorthand name. ResourceController > rsc

This commit is contained in:
2024-03-09 07:40:55 +00:00
parent a6833473de
commit a430d45e2a
6 changed files with 61 additions and 36 deletions
+2 -2
View File
@@ -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;