Update gtkserver.js

This commit is contained in:
Namhyeon Go 2020-10-20 18:14:35 +09:00
parent d62a00c137
commit 5e412918c3

View File

@ -9,7 +9,8 @@ var binPath = "bin\\gtk-server.exe";
var GTKElements = [];
// Common (Element)
var GTKElement = function(elementType) {
var GTKElement = function() {
this.Type = "GTKElement";
this.Width = 0;
this.Height = 0;
@ -56,7 +57,7 @@ var Table = function() {
this.Type = "Table";
this.attach = function(element, left, right, top, buttom) {
// TODO: Table.Attach()
// TODO: Table.attach()
};
};
Table.prototype = new GTKElement();