12 lines
132 B
C
12 lines
132 B
C
#ifndef LSP_H
|
|
#define LSP_H
|
|
|
|
#include "tier0/platform.h"
|
|
|
|
abstract_class IBasicLSP
|
|
{
|
|
virtual void GenerateConfig() = 0;
|
|
};
|
|
|
|
#endif
|