Add Span<T> support for scripting fields

This commit is contained in:
Wojtek Figat
2023-04-14 15:01:22 +02:00
parent 62fdfe2519
commit 89704bebe9
3 changed files with 19 additions and 4 deletions

View File

@@ -8,7 +8,7 @@
/// Universal representation of a contiguous region of arbitrary memory.
/// </summary>
template<typename T>
class Span
API_CLASS(InBuild) class Span
{
protected:
T* _data;