diff --git a/project/src/models/eft/common/tables/ITemplateItem.ts b/project/src/models/eft/common/tables/ITemplateItem.ts index 59b545d0..1b564374 100644 --- a/project/src/models/eft/common/tables/ITemplateItem.ts +++ b/project/src/models/eft/common/tables/ITemplateItem.ts @@ -5,9 +5,9 @@ export interface ITemplateItem _id: string _name: string _parent: string - _type: string + _type: ItemType _props: Props - _proto: string + _proto?: string } export interface Props @@ -573,3 +573,9 @@ export interface IShotsGroupSettings ShotRecoilRotationStrength: Ixyz StartShotIndex: number } + +export enum ItemType +{ + NODE = "Node", + ITEM = "Item", +}