summaryrefslogtreecommitdiffhomepage
path: root/Reader.h
blob: 6149958aec39fb603550f3346b1552fc6120d8f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <vector>

#include "Grid.h"
#include "Source.h"


struct Reader
{
    static std::vector<Grid> read(Source& source);
};