14 lines
136 B
C
14 lines
136 B
C
|
#pragma once
|
||
|
|
||
|
namespace charcoal
|
||
|
{
|
||
|
namespace builtin
|
||
|
{
|
||
|
class Prerenderable
|
||
|
{
|
||
|
public:
|
||
|
virtual void prerender() = 0;
|
||
|
};
|
||
|
}
|
||
|
}
|