1 // MarkType.java
2 
3 package net.sf.gogui.game;
4 
5 /** Markup types for points in nodes of a game tree. */
6 public enum MarkType
7 {
8     MARK,
9 
10     CIRCLE,
11 
12     SQUARE,
13 
14     TRIANGLE,
15 
16     /** Selected (SGF markup type SL).
17         Not that this markup cannot be saved in (Jago's) XML (only using a
18         legacy SGF tag), so it is needed to display markup read from SGF,
19         but is not actively supported in GoGui. */
20     SELECT,
21 
22     TERRITORY_BLACK,
23 
24     TERRITORY_WHITE;
25 }
26