gmod64-sdk/public/GarrysMod/LegacyAddons.h
2021-02-16 21:58:32 +02:00

29 lines
352 B
C++

#pragma once
#include <string>
#include <list>
namespace ILegacyAddons
{
struct Information
{
std::string name;
std::string path;
std::string luapath;
std::string placeholder4;
};
}
namespace LegacyAddons
{
class System
{
public:
virtual void Refresh( ) = 0;
virtual const std::list<ILegacyAddons::Information> &GetList( ) const = 0;
};
}