forked from krkrz/kag3
Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| | ||
|
|
||
| class MenuItem | ||
| { | ||
| var caption; | ||
| var checked; | ||
| var enabled; | ||
| var group; | ||
| var radio; | ||
| var shortcut; | ||
| var visible; | ||
| var parent; | ||
| var children; | ||
| var root; | ||
| var window; | ||
| var index; | ||
| function MenuItem() { | ||
| children = []; | ||
| } | ||
| function finalize() {} | ||
| function add() {} | ||
| function insert() {} | ||
| function remove() {} | ||
| function popup() {} | ||
| function onClick() {} | ||
| function fireClick() {} | ||
| } | ||
|
|
||
| global.Window.menu = new MenuItem(); | ||
|
|
BIN
+4.46 MB
data/font.otf
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters