Skip to content

Commit

Permalink
[Engine] Moved IndexingDictionary to Xenko.Core
Browse files Browse the repository at this point in the history
  • Loading branch information
xen2 committed Feb 15, 2019
1 parent 71248f3 commit 9b11625
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
Expand Up @@ -3,11 +3,10 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Xenko.Core.Collections;
using Xenko.Core.Serialization;
using Xenko.Core.Serialization.Serializers;

namespace Xenko.Engine
namespace Xenko.Core.Collections
{
/// <summary>
/// A dictionary that maps index values to items. It uses a sparse list internally for storage.
Expand Down
@@ -1,8 +1,9 @@
// Copyright (c) Xenko contributors (https://xenko.com) and Silicon Studio Corp. (https://www.siliconstudio.co.jp)
// Copyright (c) Xenko contributors (https://xenko.com) and Silicon Studio Corp. (https://www.siliconstudio.co.jp)
// Distributed under the MIT license. See the LICENSE.md file in the project root for more information.
using Xenko.Core.Serialization.Serializers;

namespace Xenko.Engine
using Xenko.Core.Collections;

namespace Xenko.Core.Serialization.Serializers
{
internal class IndexingDictionarySerializer<TValue> : DictionaryAllSerializer<IndexingDictionary<TValue>, int, TValue> where TValue : class
{
Expand Down
Expand Up @@ -12,6 +12,7 @@
using Xenko.Core.Quantum;
using Xenko.Assets.Models;
using Xenko.Assets.Presentation.AssetEditors.EntityHierarchyEditor.ViewModels;
using Xenko.Core.Collections;
using Xenko.Engine;
using Xenko.Rendering;

Expand Down
1 change: 1 addition & 0 deletions sources/engine/Xenko.Engine/Engine/ModelComponent.cs
Expand Up @@ -6,6 +6,7 @@
using System.ComponentModel;
using Xenko.Core;
using Xenko.Core.Annotations;
using Xenko.Core.Collections;
using Xenko.Core.Mathematics;
using Xenko.Engine.Design;
using Xenko.Engine.Processors;
Expand Down
2 changes: 1 addition & 1 deletion sources/engine/Xenko.Engine/Rendering/IModelInstance.cs
@@ -1,7 +1,7 @@
// Copyright (c) Xenko contributors (https://xenko.com) and Silicon Studio Corp. (https://www.siliconstudio.co.jp)
// Distributed under the MIT license. See the LICENSE.md file in the project root for more information.

using Xenko.Engine;
using Xenko.Core.Collections;

namespace Xenko.Rendering
{
Expand Down

0 comments on commit 9b11625

Please sign in to comment.