mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-07 17:11:32 +02:00
17 lines
277 B
C++
17 lines
277 B
C++
//
|
|
// Texture.h
|
|
// interface
|
|
//
|
|
// Created by Yoz Work on 11/5/12.
|
|
//
|
|
//
|
|
|
|
#ifndef __interface__Texture__
|
|
#define __interface__Texture__
|
|
|
|
#include <iostream>
|
|
#include "InterfaceConfig.h"
|
|
|
|
int load_png_as_texture(char* filename);
|
|
|
|
#endif /* defined(__interface__texture__) */
|