Stanislav N. aka pztrn
384754276a
Fixed Pooler's data race which occurs on every server's pinging goroutine creation, because of uncontrolled write to current requests counter. Protected it with mutex. Added very experimental and not-yet-working qt5 interface. Maybe it will be completed someday.
26 lines
520 B
Go
26 lines
520 B
Go
// URTator - Urban Terror server browser and game launcher, written in
|
|
// Go.
|
|
//
|
|
// Copyright (c) 2016, Stanslav N. a.k.a pztrn (or p0z1tr0n)
|
|
// All rights reserved.
|
|
//
|
|
// Licensed under Terms and Conditions of GNU General Public License
|
|
// version 3 or any higher.
|
|
// ToDo: put full text of license here.
|
|
package ui
|
|
|
|
import (
|
|
// local
|
|
"github.com/pztrn/urtrator/context"
|
|
)
|
|
|
|
var (
|
|
ctx *context.Context
|
|
)
|
|
|
|
func NewMainWindow(c *context.Context) *MainWindow {
|
|
ctx = c
|
|
m := MainWindow{}
|
|
return &m
|
|
}
|