blob: 0503c7d998a239fb2bd5bb88bb62d2f24f979d64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace WK.Rendering
{
public class GraphicsManager : Singleton<GraphicsManager>
{
public List<Shader> m_Shaders;
}
}
|