14 lines
199 B
C
14 lines
199 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "IUpdateRender.h"
|
||
|
|
|
||
|
|
class UpdateRenderStd : public IUpdateRender {
|
||
|
|
public:
|
||
|
|
UpdateRenderStd();
|
||
|
|
~UpdateRenderStd() override;
|
||
|
|
|
||
|
|
protected:
|
||
|
|
virtual void OnDestroy();
|
||
|
|
|
||
|
|
};
|