Refactor: Separate concerns.
This commit is contained in:
@@ -25,7 +25,7 @@ namespace zaaReloaded2.Dictionaries
|
||||
/// <summary>
|
||||
/// A dictionary of <see cref="LabItem"/>s.
|
||||
/// </summary>
|
||||
public interface IItemDictionary : IDictionary<string, Models.LabItem>
|
||||
public interface IItemDictionary : IDictionary<string, LabModel.LabItem>
|
||||
{
|
||||
void Merge(IItemDictionary otherItemDictionary);
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using zaaReloaded2.Models;
|
||||
using zaaReloaded2.LabModel;
|
||||
|
||||
namespace zaaReloaded2.Dictionaries
|
||||
{
|
||||
|
||||
@@ -21,7 +21,7 @@ using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Text;
|
||||
using System.IO;
|
||||
using zaaReloaded2.Models;
|
||||
using zaaReloaded2.LabModel;
|
||||
|
||||
namespace zaaReloaded2.Dictionaries
|
||||
{
|
||||
@@ -49,7 +49,7 @@ namespace zaaReloaded2.Dictionaries
|
||||
/// Looks up the material for a given <paramref name="laurisName"/>.
|
||||
/// </summary>
|
||||
/// <param name="laurisName">Lauris item name to look up.</param>
|
||||
/// <returns><see cref="zaaReloaded2.Models.Material"/> enum; if no material is
|
||||
/// <returns><see cref="zaaReloaded2.LabModel.Material"/> enum; if no material is
|
||||
/// found in the dictionary, the default material "S" (serum) is returned.</returns>
|
||||
public Material GetMaterial(string laurisName)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user