12345678910111213141516171819202122232425262728293031323334 |
- using System.Collections.Generic;
- using Blue;
- namespace GHZLangChao
- {
-
-
-
- public class SceneIOCContainer : BlueSingleton<SceneIOCContainer>
- {
- private Dictionary<string, object> objContainer = new Dictionary<string, object>();
- public void Push(string objName, object obj)
- {
- if (objContainer.ContainsKey(objName))
- {
- objContainer[objName] = obj;
- }
- else
- {
- objContainer.Add(objName, obj);
- }
- }
- public object Pull(string objName)
- {
- if (objContainer.ContainsKey(objName))
- {
- return objContainer[objName];
- }
- return null;
- }
- }
- }
|