local MarriageEnum = { -- 举办的婚姻类型 MarryTypeEnum = { -- 普通 Normal = 1, -- 奢想 Comfort = 2, -- 豪华 Deluxe = 3, }, -- 亲密度奖励领取状态 IntimacyStateEnum = { --领取 Receiving = 1, --已领取 Received = 2, --未达成 UnReceive = 3, }, --仙居数据的类型分类 HouseTypeEnum = { --升级 Upgrade = 1, --突破 Overfulfil = 2, --预览 Preview = 3, }, --离婚类型 DivorceTypeEnum = { --普通离婚 Normal = 0, --申诉 Appeal = 1, --强制离婚 Force = 2, }, --求婚类型 ProposeTypeEnum = { --求婚 Propose = 1, --被求婚 BeProposed = 2, }, --对诗界面类型 PoetryEnum = { Waitting = 1, BlessResult = 2, BlessTopic = 3, }, } return MarriageEnum