44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace LayoutBXLYT
|
|||
|
{
|
|||
|
public class ShaderLoader
|
|||
|
{
|
|||
|
private static BflytShader cafeShader;
|
|||
|
private static BrlytShader revShader;
|
|||
|
private static BclytShader ctrShader;
|
|||
|
|
|||
|
public static BflytShader CafeShader
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
if (cafeShader == null)
|
|||
|
cafeShader = new BflytShader();
|
|||
|
return cafeShader;
|
|||
|
}
|
|||
|
}
|
|||
|
public static BrlytShader RevShader
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
if (revShader == null)
|
|||
|
revShader = new BrlytShader();
|
|||
|
return revShader;
|
|||
|
}
|
|||
|
}
|
|||
|
public static BclytShader CtrShader
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
if (ctrShader == null)
|
|||
|
ctrShader = new BclytShader();
|
|||
|
return ctrShader;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|