Browse Source

feat: Changing hard coded links to xref

Vaclav Elias 2 years ago
parent
commit
6ebc6be7ad
1 changed files with 4 additions and 5 deletions
  1. 4 5
      en/manual/engine/entity-component-model/usage.md

+ 4 - 5
en/manual/engine/entity-component-model/usage.md

@@ -2,12 +2,11 @@
 
 ## Classes
 
-The three parts of "Entity Component System" map to the following classes:
-
-- Entity - [`Stride.Engine.Entity`](https://doc.stride3d.net/latest/en/api/Stride.Engine.Entity.html)
-- Component - [`Stride.Engine.EntityComponent`](https://doc.stride3d.net/latest/en/api/Stride.Engine.EntityComponent.html)
-- System - [`Stride.Engine.EntityProcessor`](https://doc.stride3d.net/latest/en/api/Stride.Engine.EntityProcessor.html)
+The three parts of **Entity Component System** map to the following classes:
 
+- Entity - [`Stride.Engine.Entity`](xref:Stride.Engine.Entity)
+- Component - [`Stride.Engine.EntityComponent`](xref:Stride.Engine.EntityComponent)
+- System - [`Stride.Engine.EntityProcessor`](xref:Stride.Engine.EntityProcessor)
 
 ## Minimal Setup