charcoal/CharcoalBuiltin/TextureGenerator.h
elipzer 7cbe8acf30 Libraries Work!
Now the code is being compiled through .lib files!
2018-10-11 01:26:24 -04:00

19 lines
252 B
C++

#pragma once
#include <vector>
#include <charcoal/Texture.h>
#include <charcoal/Sampler.h>
namespace charcoal
{
namespace builtin
{
namespace texturegenerator
{
Texture* gen_quick_cube_texture();
Sampler* gen_quick_sampler();
}
}
}