Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 358 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 358 Bytes

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 git@github.com:MarkJGx/ALEXTMap.git

Usage

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