| | 1 | | using DCL.ECS7.InternalComponents; |
| | 2 | | using DCL.ECSRuntime; |
| | 3 | |
|
| | 4 | | public readonly struct ComponentGroups : IComponentGroups |
| | 5 | | { |
| 0 | 6 | | public readonly IECSReadOnlyComponentsGroup<InternalMaterial, InternalTexturizable> texturizableGroup { get; } |
| | 7 | |
|
| | 8 | | public ComponentGroups(ECSComponentsManager componentsManager) |
| | 9 | | { |
| 2 | 10 | | texturizableGroup = componentsManager.CreateComponentGroup<InternalMaterial, InternalTexturizable> |
| | 11 | | ((int)InternalECSComponentsId.MATERIAL, (int)InternalECSComponentsId.TEXTURIZABLE); |
| 2 | 12 | | } |
| | 13 | | } |