diff options
author | chai <chaifix@163.com> | 2022-04-24 15:59:07 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2022-04-24 15:59:07 +0800 |
commit | 6158af99ad803d9e29096ee6f65026d5e0db0f1f (patch) | |
tree | 7e9a58f33ad255c721f92a84d6ded8847f8c5b8f /SurvivalTest/Assets/Scripts/Managers/PlayerManager_Decorations.cs | |
parent | 1ab081709bbba66a426371e07efe38bc36072453 (diff) |
*misc
Diffstat (limited to 'SurvivalTest/Assets/Scripts/Managers/PlayerManager_Decorations.cs')
-rw-r--r-- | SurvivalTest/Assets/Scripts/Managers/PlayerManager_Decorations.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/SurvivalTest/Assets/Scripts/Managers/PlayerManager_Decorations.cs b/SurvivalTest/Assets/Scripts/Managers/PlayerManager_Decorations.cs index ce85849..3f1669a 100644 --- a/SurvivalTest/Assets/Scripts/Managers/PlayerManager_Decorations.cs +++ b/SurvivalTest/Assets/Scripts/Managers/PlayerManager_Decorations.cs @@ -5,6 +5,19 @@ using UnityEngine; public partial class PlayerManager : Singleton<PlayerManager> { + // µ±Ç°ÊÎÆ· + public List<DecorationBase> decorations { get { return m_Decorations; } } + private List<DecorationBase> m_Decorations = new List<DecorationBase>(); + void InitDecorations() + { + m_Decorations.Add(new Decoration_MystreyMask()); + m_Decorations.Add(new Decoration_PowerRing()); + } + + void UpdateDecorations() + { + + } }
\ No newline at end of file |