about summary refs log tree commit diff stats
path: root/ext/wittle_generator/Test.cpp
blob: 1da6cd8e7da5a19c6af0c4dadd9149511304412d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "Generate.h"

int main(int, char**) {
  Generate generator;
  generator.setSymbol(Decoration::Start, 0, 4 * 2);
  generator.setSymbol(Decoration::Exit, 4 * 2, 0);
  /*generator.generate(4 * 2 + 1, 4 * 2 + 1,
                     {{{Decoration::Triangle | Decoration::Orange, 6}}});*/
  generator.generate(4 * 2 + 1, 4 * 2 + 1,
                     {{{Decoration::Star | Decoration::Color::Magenta, 4},
                       {Decoration::Stone | Decoration::Color::Black, 4},
                       {Decoration::Stone | Decoration::Color::White, 4}}});

  return 0;
}