コード例 #1
0
ファイル: ModelDemo2.cs プロジェクト: unfeelia/Engine
 public int AddObject(ICollectable collectableObject)
 {
     AddObject((IModelObject)collectableObject);
     CollectableObjects.Add(new KeyValuePair <int, ICollectable>(collectableObject.GetID(), collectableObject));
     return(collectableObject.GetID());
 }