Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ export default defineConfig({
text: 'Reverse Engineering',
collapsed: true,
items: [
{text: 'Introduction', link:'/reverse-engineering/introduction'},
{text: 'Using IDA', link: '/reverse-engineering/using-ida'},
{text: 'Microsoft STL', link: '/reverse-engineering/microsoft-stl'}
{ text: 'Introduction', link: '/reverse-engineering/introduction' },
{ text: 'Using IDA', link: '/reverse-engineering/using-ida' },
{ text: 'Microsoft STL', link: '/reverse-engineering/microsoft-stl' }
]
},
{
Expand All @@ -60,12 +60,13 @@ export default defineConfig({
text: 'Entities',
collapsed: true,
items: [
{text: 'EnTT', link:'/entities/entt'},
{ text: 'EnTT', link: '/entities/entt' }
]
}
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/bedrock-native-modding/wiki' }
{ icon: 'github', link: 'https://github.com/bedrock-native-modding/wiki' },
{ icon: 'discord', link: 'https://discord.gg/eJXZbQkwnz' }
],
search: {
provider: 'local'
Expand Down
4 changes: 2 additions & 2 deletions wiki/entities/entt.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ include(FetchContent)
FetchContent_Declare(
EnTT
GIT_REPOSITORY https://github.com/skypjack/entt.git
GIT_TAG 2909e7ab1f1e73a36f778319070695611e3fa47b # v3.13.1
GIT_TAG fe8d7d78c4823e8a66a050bf86f5c6318cf76ce7 # Minecraft 1.21.90+
)

FetchContent_MakeAvailable(EnTT)
Expand All @@ -52,7 +52,7 @@ target_link_libraries(MyTarget PRIVATE EnTT::EnTT)
Or, if you have a CMake project using CPM ([setup](/beginners-guide/your-first-hook#cpm)):

```CMake
CPMAddPackage("gh:skypjack/entt@v3.13.1")
CPMAddPackage("gh:skypjack/entt#fe8d7d78c4823e8a66a050bf86f5c6318cf76ce7")
```

Or, if a package repository is configured in your environment, `find_package` can be used as a less verbose
Expand Down