16 lines
298 B
C++
16 lines
298 B
C++
#pragma once
|
|
|
|
#include "asset_base.hpp"
|
|
|
|
struct Scripts : public AssetBase
|
|
{
|
|
public:
|
|
static constexpr std::array<std::string_view, 1> Extensions = { ".cs" };
|
|
|
|
public:
|
|
template <typename ParsedProject>
|
|
void Parse(const ParsedProject& project, std::string& content)
|
|
{
|
|
|
|
}
|
|
} |