Files
tyra-linux/src/engine/include/models/texture_link.hpp
T
2020-10-31 10:53:20 +01:00

22 lines
455 B
C++

/*
# ______ ____ ___
# | \/ ____| |___|
# | | | \ | |
#-----------------------------------------------------------------------
# Copyright 2020, tyra - https://github.com/h4570/tyra
# Licenced under Apache License 2.0
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
*/
#ifndef _TYRA_TEXTURE_USAGE_
#define _TYRA_TEXTURE_USAGE_
#include <tamtypes.h>
struct TextureLink
{
u32 meshId, materialId;
};
#endif