Skip to content

Unreal Engine wrapper library for Microsoft's ML-enhanced map.

License

Notifications You must be signed in to change notification settings

MarkJGx/ALEXTMap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

12e2a0a · Jun 28, 2020

History

22 Commits
Jun 28, 2020
Jun 28, 2020
Jun 28, 2020
Jun 28, 2020
Jun 28, 2020
Jun 28, 2020
Jun 28, 2020

Repository files navigation

ALEXTMap

Unreal Engine plugin that implements a wrapper for Microsoft's ML-enhanced map.

https://github.com/microsoft/ALEX

This project uses git submodules, clone with --recursive

git clone --recursive [email protected]:MarkJGx/ALEXTMap.git

Usage

TAlexMap<int32, int32> Map;
Map.Add(1, 1)
int32 Value = Map.At(1);
Value = Map[1];