aboutsummaryrefslogtreecommitdiff
path: root/net/client.go
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2017-02-19 22:22:46 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2017-02-21 15:20:22 +0100
commitb8bdd9d0419bab8ee0a7dd4b6e9fb1df7fecf221 (patch)
tree392dee0e299be6b6370ba911341fd786fa9111f1 /net/client.go
parentf08b6e39f4157dc209e30407909b879caf6760e0 (diff)
downloadgoffel-b8bdd9d0419bab8ee0a7dd4b6e9fb1df7fecf221.tar.gz
goffel-b8bdd9d0419bab8ee0a7dd4b6e9fb1df7fecf221.zip
move network code from uis to net
logic: add NewPlayer function
Diffstat (limited to 'net/client.go')
-rw-r--r--net/client.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/net/client.go b/net/client.go
new file mode 100644
index 0000000..dae0fa1
--- /dev/null
+++ b/net/client.go
@@ -0,0 +1,12 @@
+// Copyright (c) 2016 Florian Fischer. All rights reserved.
+// Use of this source code is governed by a MIT license found in the LICENSE file.
+
+package net
+
+type Client struct {
+ Port string
+}
+
+func (ui *Client) Run() {
+ println("Not Implemented")
+}