mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-27 12:03:25 +00:00
10 lines
183 B
C++
10 lines
183 B
C++
#include "fontAsset.h"
|
|
|
|
namespace vb01{
|
|
const FontAsset::Glyph& FontAsset::getGlyph(int id){
|
|
for(Glyph &glyph : glyphs)
|
|
if(glyph.id == id)
|
|
return (const Glyph&) glyph;
|
|
}
|
|
}
|