14 lines
296 B
C++
14 lines
296 B
C++
// Copyright (c) 2022 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#pragma once
|
|
#include "SimpleTexturedShader.hpp"
|
|
|
|
#define UI_SHADER_PROGRAM_PRIORITY 100
|
|
|
|
namespace Dawn {
|
|
class UIShader : public SimpleTexturedShader {
|
|
};
|
|
} |