コード例 #1
0
ファイル: Member.cs プロジェクト: LeviStenton/toollibrary
 // Add a given tool to the list of tools that this member is currently holding
 public void addTool(Tool aTool)
 {
     tools.add(aTool);
 }
コード例 #2
0
 // Add the given tool to the system using currentCollection
 public void add(Tool aTool)
 {
     currentCollection.add(aTool);
 }