mirror of
https://github.com/ENSL/NS.git
synced 2024-11-24 13:31:12 +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
|