< Summary

Class:DCL.ECSRuntime.ECSComponentData[T]
Assembly:DCL.ECSRuntime.Components
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/WorldRuntime/ECSRuntime/Components/ECSComponentData.cs
Covered lines:4
Uncovered lines:0
Coverable lines:4
Total lines:13
Line coverage:100% (4 of 4)
Covered branches:0
Total branches:0

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/WorldRuntime/ECSRuntime/Components/ECSComponentData.cs

#LineLine coverage
 1using DCL.Controllers;
 2using DCL.Models;
 3
 4namespace DCL.ECSRuntime
 5{
 6    public class ECSComponentData<T> : IECSReadOnlyComponentData<T>
 7    {
 5298        public IParcelScene scene { get; set; }
 4989        public IDCLEntity entity { get; set; }
 130910        public T model { get; set; }
 81111        public IECSComponentHandler<T> handler { get; set; }
 12    }
 13}