mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
14 lines
183 B
C++
14 lines
183 B
C++
#pragma once
|
|
#include "pch.h"
|
|
|
|
|
|
// 所有可在屏幕上渲染的类的基类
|
|
class Renderable {
|
|
public:
|
|
Renderable() {
|
|
}
|
|
|
|
virtual ~Renderable() {}
|
|
|
|
virtual void Render() = 0;
|
|
};
|