mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 09:11:55 +00:00
13 lines
165 B
C
13 lines
165 B
C
|
#ifndef RELOADABLECOMPONENT_H
|
||
|
#define RELOADABLECOMPONENT_H
|
||
|
|
||
|
class ReloadableComponent
|
||
|
{
|
||
|
public:
|
||
|
virtual void VidInit(void) = 0;
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|