mirror of https://github.com/AxioDL/metaforce.git
IRenderer: Convert typedef to using alias
Same behavior, but nicer to read.
This commit is contained in:
parent
0d3bab4c14
commit
111f0c3d3a
|
@ -27,7 +27,7 @@ struct SShader;
|
|||
|
||||
class IRenderer {
|
||||
public:
|
||||
typedef void (*TDrawableCallback)(const void*, const void*, int);
|
||||
using TDrawableCallback = void (*)(const void*, const void*, int);
|
||||
using TReflectionCallback = std::function<void(void*, const zeus::CVector3f&)>;
|
||||
|
||||
enum class EDrawableSorting { SortedCallback, UnsortedCallback };
|
||||
|
|
Loading…
Reference in New Issue