> For the complete documentation index, see [llms.txt](https://cavonstavants-organization.gitbook.io/rtype/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cavonstavants-organization.gitbook.io/rtype/development-guidelines-and-how-tos/readme/components.md).

# Components

They are most of the time struct/class containing some obvious fact. As example, Component Position :

```cpp
struct Position {  
	int x;  
	int y;  
};
```
