UserID, UserName type

- Owner가 아니고, User여야.
This commit is contained in:
2024-03-11 12:38:37 +00:00
parent cf3a208591
commit c99f97323d
2 changed files with 5 additions and 5 deletions
@@ -1,13 +1,13 @@
import type { DiplomaticPermission, GeneralID, GeneralName, ItemID, ItemKeyType, NationID, NpcType, OfficerLevel, OwnerID, OwnerName, PersonalityType, SpecialityDomesticType, SpecialityWarType, TroopID } from "../defs.js";
import type { DiplomaticPermission, GeneralID, GeneralName, ItemID, ItemKeyType, NationID, NpcType, OfficerLevel, PersonalityType, SpecialityDomesticType, SpecialityWarType, TroopID, UserID, UserName } from "../defs.js";
export interface IGeneralEntity {
id: GeneralID;
owner?: OwnerID;
ownerID?: UserID;
npcType: NpcType;
affinity?: number;
picture?: string;
name: GeneralName;
ownerName?: OwnerName;
ownerName?: UserName;
nationID: NationID;
cityID: number;
troopID?: TroopID;