forked from M-Labs/nac3
9 lines
123 B
C++
9 lines
123 B
C++
|
#pragma once
|
||
|
|
||
|
#include <irrt/int_types.hpp>
|
||
|
|
||
|
template <typename SizeT> struct CSlice
|
||
|
{
|
||
|
uint8_t *base;
|
||
|
SizeT len;
|
||
|
};
|