about summary refs log tree commit diff stats
path: root/data/maps/daedalus/rooms/Bee Room Reverse.txtpb
blob: cba8285daf80e0231794fc6e2d51392a33283795 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: "Bee Room Reverse"
panel_display_name: "Bee Room"
panels {
  name: "POCKET"
  path: "Panels/Bee Room/bee_9"
  clue: "pocket"
  answer: "rocket"
  symbols: ZERO
}
panels {
  name: "FLUME"
  path: "Panels/Bee Room/bee_10"
  clue: "flume"
  answer: "zoom"
  symbols: ZERO
}
panels {
  name: "HEALED"
  path: "Panels/Bee Room/bee_11"
  clue: "healed"
  answer: "shield"
  symbols: ZERO
}
panels {
  name: "SCRATCH"
  path: "Panels/Bee Room/bee_12"
  clue: "scratch"
  answer: "match"
  symbols: ZERO
}
panels {
  name: "MINORITY"
  path: "Panels/Bee Room/bee_13"
  clue: "minority"
  answer: "authority"
  symbols: ZERO
}
panels {
  name: "STYLINGS"
  path: "Panels/Bee Room/bee_14"
  clue: "stylings"
  answer: "filings"
  symbols: ZERO
}
panels {
  name: "PLANTS"
  path: "Panels/Bee Room/bee_15"
  clue: "plants"
  answer: "nature"
  symbols: BOXES
}
panels {
  name: "COUNCIL"
  path: "Panels/Bee Room/bee_16"
  clue: "council"
  answer: "counsel"
  symbols: ZERO
}
paintings {
  name: "BEE3"
  path: "Components/Paintings/Group3/bee3"
  gravity: Y_PLUS
}
paintings {
  name: "BUTTERFLY2"
  path: "Components/Paintings/Group3/butterfly2"
  gravity: Y_PLUS
}
/ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#include <wx/wxprec.h>

#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif

#include "map.h"
#include "frame.h"

class MapeditApp : public wxApp {
  public:
    virtual bool OnInit();
};

wxIMPLEMENT_APP(MapeditApp);

bool MapeditApp::OnInit()
{
  wxInitAllImageHandlers();
  
  MapeditFrame::NewWorld();
  
  return true;
}