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