about summary refs log tree commit diff stats
path: root/tools/validator/validator.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/validator/validator.h')
0 files changed, 0 insertions, 0 deletions
#x27;s rando' href='/wittle/commit/ext/wittle_generator/Test.cpp?id=dde56d26837dc52e05207c0672b3c4a1046f6cb2'>dde56d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19



                       
                                                  

                                                                           








                                                                          


           
#include "Generate.h"

int main(int, char**) {
  Generate generator;
  // generator.setFlag(Generate::RegularStartEnd);
  /*generator.generate(4 * 2 + 1, 4 * 2 + 1,
                     {{{Decoration::Triangle | Decoration::Orange, 6}}});*/
  // generator.setSymmetry(Panel::Vertical);
  generator.setSymbol(Decoration::Exit, 0, 0);
  generator.setSymbol(Decoration::Exit, 7 * 2, 0);
  generator.setSymbol(Decoration::Exit, 7 * 2, 7 * 2);
  generator.generate(7 * 2 + 1, 7 * 2 + 1,
                     {{{Decoration::Stone | Decoration::Color::White, 10},
                       {Decoration::Stone | Decoration::Color::Black, 10},
                       {Decoration::Dot, 10},
                       {Decoration::Start, 2}}});

  return 0;
}