Files
funnygame/fpc/public/lsp.h
2025-12-28 01:39:26 +02:00

12 lines
132 B
C

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