mirror of
https://github.com/ENSL/NS.git
synced 2024-11-14 00:40:57 +00:00
4f13237895
Change CRLF to LF in repo.
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 |