10 lines
180 B
C++
10 lines
180 B
C++
#pragma once
|
|
#include "defines.h"
|
|
#include <iostream>
|
|
|
|
namespace MassShoot {
|
|
namespace Skybox{
|
|
LOADING_FUNC LoadSkybox(std::string filePath);
|
|
RENDERING_FUNC DrawSkybox();
|
|
}
|
|
} |