Core/TypeTag: Add Type helper typedef

This commit is contained in:
Lynix 2019-09-01 11:15:02 +02:00
parent 6c733ec197
commit 724972e889
2 changed files with 5 additions and 1 deletions

View File

@ -191,6 +191,7 @@ Nazara Engine:
- Added PhysWorld2D::[RaycastQuery, RegionQuery] overloads taking a callback
- Added x and y mouse position to MouseWheelEvent
- Added SimpleTextDrawer::[Get|Set]MaxLineWidth (which does line wrap)
- TypeTag helper struct now includes a Type using
Nazara Development Kit:
- Added ImageWidget (#139)

View File

@ -10,7 +10,10 @@
namespace Nz
{
template<typename T>
struct TypeTag {};
struct TypeTag
{
using Type = T;
};
}
#endif // NAZARA_TYPETAG_HPP