aoc2019/src/Day1Solution.h

12 lines
194 B
C
Raw Normal View History

2019-12-14 17:05:43 -06:00
#ifndef AOC2019_DAY1SOLUTION_H
#define AOC2019_DAY1SOLUTION_H
#include "Solution.h"
class Day1Solution : public Solution {
public:
void run() override;
};
#endif //AOC2019_DAY1SOLUTION_H