-
Notifications
You must be signed in to change notification settings - Fork 0
/
igeek.inl
36 lines (26 loc) · 945 Bytes
/
igeek.inl
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
/* Interactive Gym Environment and Educational Kit (IGEEK) @version 0.x
@link https://github.com/kabuki-starship/igeek.git
@file /igeek.cc.inl
@author Cale McCollough <<https://calemccollough.github.io>>
@license Copyright (C) 2014-9 Cale McCollough <<calemccollough.github.io>>;
All right reserved (R). This Source Code Form is subject to the terms of the
Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with
this file, You can obtain one at <https://mozilla.org/MPL/2.0/>. */
#include <pch.h>
#include "c_igeek.h"
namespace _ {
Cell_IGA::Cell_IGA ()
{
add (new LeukocyteWar ());
}
static void Cell_IGA::main (AString[] args)
{
JFrame window = new JFrame ("Kabuki.Cell_IGA");
window.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
JScrollPane scrollableArea = new JScrollPane (new LeukocyteWar ());
window.setContentPane (scrollableArea);
window.pack ();
window.setVisible (true);
}
}
}