Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://gitlab.com/Tardo/MineTee
Server/Client Mod for Teeworlds v0.6.x
https://gitlab.com/Tardo/MineTee
gamemode mod server teeworlds
Last synced: 15 days ago
JSON representation
Server/Client Mod for Teeworlds v0.6.x
- Host: gitlab.com
- URL: https://gitlab.com/Tardo/MineTee
- Owner: Tardo
- License: zlib
- Created: 2018-06-03T23:37:39.690Z (over 6 years ago)
- Default Branch: master
- Last Synced: 2024-07-30T20:51:30.122Z (3 months ago)
- Topics: gamemode, mod, server, teeworlds
- Stars: 1
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: readme.md
- License: license.txt
Awesome Lists containing this project
README
---------------------------------------------------------------------
+ MINETEE README [![Circle CI](https://circleci.com/gh/CytraL/MineTee.svg?style=svg)](https://circleci.com/gh/CytraL/MineTee)
---------------------------------------------------------------------
Copyright (c) 2016 Alexandre DíazThis program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with this program. If not, see .- MinGW Compilation issues
If you get the error "'_hypot' was not declared in this scope..." you will need edit the file 'C:\MinGW\include\math.h'.
Change the line:
```c++
{ return (float)(_hypot (x, y)); }
```
To...
```c++
{ return (float)(hypot (x, y)); }
```
*** More details here: http://stackoverflow.com/a/29489843---------------------------------------------------------------------
+ TEEWORLDS README
---------------------------------------------------------------------Copyright (c) 2011 Magnus Auvinen
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.Please visit http://www.teeworlds.com for up-to-date information about
the game, including new versions, custom maps and much more.