diff --git a/data/shaders/v2f-c4f.frag b/data/shaders/v2f-c4f.frag deleted file mode 100755 index 89946792..00000000 --- a/data/shaders/v2f-c4f.frag +++ /dev/null @@ -1,4 +0,0 @@ -// 2D drawing shader -void main() { - gl_FragColor = gl_Color; -} diff --git a/data/shaders/v2f-c4f.vert b/data/shaders/v2f-c4f.vert deleted file mode 100755 index dda5f179..00000000 --- a/data/shaders/v2f-c4f.vert +++ /dev/null @@ -1,13 +0,0 @@ -// 2D drawing shader -uniform mat4 model; -uniform mat4 view; -uniform mat4 projection; - -attribute vec2 vertex; -attribute vec4 color; - -void main() -{ - gl_FrontColor = color; - gl_Position = projection*(view*(model*vec4(vertex,0.0,1.0))); -} diff --git a/data/shaders/v2f-t2f-c4f.frag b/data/shaders/v2f-t2f-c4f.frag deleted file mode 100755 index 3cdf9801..00000000 --- a/data/shaders/v2f-t2f-c4f.frag +++ /dev/null @@ -1,6 +0,0 @@ -// 2D drawing shader -uniform sampler2D texture; -void main() -{ - gl_FragColor = texture2D(texture, gl_TexCoord[0].xy) * gl_Color; -} diff --git a/data/shaders/v2f-t2f-c4f.vert b/data/shaders/v2f-t2f-c4f.vert deleted file mode 100755 index 1927b815..00000000 --- a/data/shaders/v2f-t2f-c4f.vert +++ /dev/null @@ -1,15 +0,0 @@ -// 2D drawing shader - modified freetype-gl shader -uniform mat4 model; -uniform mat4 view; -uniform mat4 projection; - -attribute vec2 vertex; -attribute vec2 tex_coord; -attribute vec4 color; - -void main() -{ - gl_TexCoord[0].xy = tex_coord.xy; - gl_FrontColor = color; - gl_Position = projection*(view*(model*vec4(vertex,0.0,1.0))); -} diff --git a/data/shaders/v3f-t2f-c4f.frag b/data/shaders/v3f-t2f-c4f.frag deleted file mode 100755 index 4b37f859..00000000 --- a/data/shaders/v3f-t2f-c4f.frag +++ /dev/null @@ -1,11 +0,0 @@ -/* Freetype GL - A C OpenGL Freetype engine - * - * Distributed under the OSI-approved BSD 2-Clause License. See accompanying - * file `LICENSE` for more details. - */ -uniform sampler2D texture; -void main() -{ - float a = texture2D(texture, gl_TexCoord[0].xy).r; - gl_FragColor = vec4(gl_Color.rgb, gl_Color.a*a); -} diff --git a/data/shaders/v3f-t2f-c4f.vert b/data/shaders/v3f-t2f-c4f.vert deleted file mode 100755 index 5d0232c3..00000000 --- a/data/shaders/v3f-t2f-c4f.vert +++ /dev/null @@ -1,18 +0,0 @@ -/* Freetype GL - A C OpenGL Freetype engine - * - * Distributed under the OSI-approved BSD 2-Clause License. See accompanying - * file `LICENSE` for more details. - */ -uniform mat4 model; -uniform mat4 view; -uniform mat4 projection; - -attribute vec3 vertex; -attribute vec2 tex_coord; -attribute vec4 color; -void main() -{ - gl_TexCoord[0].xy = tex_coord.xy; - gl_FrontColor = color; - gl_Position = projection*(view*(model*vec4(vertex,1.0))); -} diff --git a/fonts/opensans.ttf b/fonts/opensans.ttf deleted file mode 100755 index fd79d43b..00000000 Binary files a/fonts/opensans.ttf and /dev/null differ diff --git a/fonts/roboto.ttf b/fonts/roboto.ttf deleted file mode 100755 index aaf374d2..00000000 Binary files a/fonts/roboto.ttf and /dev/null differ diff --git a/fonts/tf2build.ttf b/fonts/tf2build.ttf deleted file mode 100755 index d59eec96..00000000 Binary files a/fonts/tf2build.ttf and /dev/null differ diff --git a/fonts/unispace.ttf b/fonts/unispace.ttf deleted file mode 100755 index 89a1aadc..00000000 Binary files a/fonts/unispace.ttf and /dev/null differ diff --git a/fonts/verasans.ttf b/fonts/verasans.ttf deleted file mode 100755 index 9be6547e..00000000 Binary files a/fonts/verasans.ttf and /dev/null differ diff --git a/res/shaders/v2f-c4f.frag b/res/shaders/v2f-c4f.frag deleted file mode 100755 index 89946792..00000000 --- a/res/shaders/v2f-c4f.frag +++ /dev/null @@ -1,4 +0,0 @@ -// 2D drawing shader -void main() { - gl_FragColor = gl_Color; -} diff --git a/res/shaders/v2f-c4f.vert b/res/shaders/v2f-c4f.vert deleted file mode 100755 index dda5f179..00000000 --- a/res/shaders/v2f-c4f.vert +++ /dev/null @@ -1,13 +0,0 @@ -// 2D drawing shader -uniform mat4 model; -uniform mat4 view; -uniform mat4 projection; - -attribute vec2 vertex; -attribute vec4 color; - -void main() -{ - gl_FrontColor = color; - gl_Position = projection*(view*(model*vec4(vertex,0.0,1.0))); -} diff --git a/res/shaders/v2f-t2f-c4f.frag b/res/shaders/v2f-t2f-c4f.frag deleted file mode 100755 index 3cdf9801..00000000 --- a/res/shaders/v2f-t2f-c4f.frag +++ /dev/null @@ -1,6 +0,0 @@ -// 2D drawing shader -uniform sampler2D texture; -void main() -{ - gl_FragColor = texture2D(texture, gl_TexCoord[0].xy) * gl_Color; -} diff --git a/res/shaders/v2f-t2f-c4f.vert b/res/shaders/v2f-t2f-c4f.vert deleted file mode 100755 index 1927b815..00000000 --- a/res/shaders/v2f-t2f-c4f.vert +++ /dev/null @@ -1,15 +0,0 @@ -// 2D drawing shader - modified freetype-gl shader -uniform mat4 model; -uniform mat4 view; -uniform mat4 projection; - -attribute vec2 vertex; -attribute vec2 tex_coord; -attribute vec4 color; - -void main() -{ - gl_TexCoord[0].xy = tex_coord.xy; - gl_FrontColor = color; - gl_Position = projection*(view*(model*vec4(vertex,0.0,1.0))); -} diff --git a/res/shaders/v3f-t2f-c4f.frag b/res/shaders/v3f-t2f-c4f.frag deleted file mode 100755 index 4b37f859..00000000 --- a/res/shaders/v3f-t2f-c4f.frag +++ /dev/null @@ -1,11 +0,0 @@ -/* Freetype GL - A C OpenGL Freetype engine - * - * Distributed under the OSI-approved BSD 2-Clause License. See accompanying - * file `LICENSE` for more details. - */ -uniform sampler2D texture; -void main() -{ - float a = texture2D(texture, gl_TexCoord[0].xy).r; - gl_FragColor = vec4(gl_Color.rgb, gl_Color.a*a); -} diff --git a/res/shaders/v3f-t2f-c4f.vert b/res/shaders/v3f-t2f-c4f.vert deleted file mode 100755 index 5d0232c3..00000000 --- a/res/shaders/v3f-t2f-c4f.vert +++ /dev/null @@ -1,18 +0,0 @@ -/* Freetype GL - A C OpenGL Freetype engine - * - * Distributed under the OSI-approved BSD 2-Clause License. See accompanying - * file `LICENSE` for more details. - */ -uniform mat4 model; -uniform mat4 view; -uniform mat4 projection; - -attribute vec3 vertex; -attribute vec2 tex_coord; -attribute vec4 color; -void main() -{ - gl_TexCoord[0].xy = tex_coord.xy; - gl_FrontColor = color; - gl_Position = projection*(view*(model*vec4(vertex,1.0))); -} diff --git a/shaders/v2f-c4f.frag b/shaders/v2f-c4f.frag deleted file mode 100755 index 89946792..00000000 --- a/shaders/v2f-c4f.frag +++ /dev/null @@ -1,4 +0,0 @@ -// 2D drawing shader -void main() { - gl_FragColor = gl_Color; -} diff --git a/shaders/v2f-c4f.vert b/shaders/v2f-c4f.vert deleted file mode 100755 index dda5f179..00000000 --- a/shaders/v2f-c4f.vert +++ /dev/null @@ -1,13 +0,0 @@ -// 2D drawing shader -uniform mat4 model; -uniform mat4 view; -uniform mat4 projection; - -attribute vec2 vertex; -attribute vec4 color; - -void main() -{ - gl_FrontColor = color; - gl_Position = projection*(view*(model*vec4(vertex,0.0,1.0))); -} diff --git a/shaders/v2f-t2f-c4f.frag b/shaders/v2f-t2f-c4f.frag deleted file mode 100755 index 3cdf9801..00000000 --- a/shaders/v2f-t2f-c4f.frag +++ /dev/null @@ -1,6 +0,0 @@ -// 2D drawing shader -uniform sampler2D texture; -void main() -{ - gl_FragColor = texture2D(texture, gl_TexCoord[0].xy) * gl_Color; -} diff --git a/shaders/v2f-t2f-c4f.vert b/shaders/v2f-t2f-c4f.vert deleted file mode 100755 index 1927b815..00000000 --- a/shaders/v2f-t2f-c4f.vert +++ /dev/null @@ -1,15 +0,0 @@ -// 2D drawing shader - modified freetype-gl shader -uniform mat4 model; -uniform mat4 view; -uniform mat4 projection; - -attribute vec2 vertex; -attribute vec2 tex_coord; -attribute vec4 color; - -void main() -{ - gl_TexCoord[0].xy = tex_coord.xy; - gl_FrontColor = color; - gl_Position = projection*(view*(model*vec4(vertex,0.0,1.0))); -} diff --git a/shaders/v3f-t2f-c4f.frag b/shaders/v3f-t2f-c4f.frag deleted file mode 100755 index 4b37f859..00000000 --- a/shaders/v3f-t2f-c4f.frag +++ /dev/null @@ -1,11 +0,0 @@ -/* Freetype GL - A C OpenGL Freetype engine - * - * Distributed under the OSI-approved BSD 2-Clause License. See accompanying - * file `LICENSE` for more details. - */ -uniform sampler2D texture; -void main() -{ - float a = texture2D(texture, gl_TexCoord[0].xy).r; - gl_FragColor = vec4(gl_Color.rgb, gl_Color.a*a); -} diff --git a/shaders/v3f-t2f-c4f.vert b/shaders/v3f-t2f-c4f.vert deleted file mode 100755 index 5d0232c3..00000000 --- a/shaders/v3f-t2f-c4f.vert +++ /dev/null @@ -1,18 +0,0 @@ -/* Freetype GL - A C OpenGL Freetype engine - * - * Distributed under the OSI-approved BSD 2-Clause License. See accompanying - * file `LICENSE` for more details. - */ -uniform mat4 model; -uniform mat4 view; -uniform mat4 projection; - -attribute vec3 vertex; -attribute vec2 tex_coord; -attribute vec4 color; -void main() -{ - gl_TexCoord[0].xy = tex_coord.xy; - gl_FrontColor = color; - gl_Position = projection*(view*(model*vec4(vertex,1.0))); -} diff --git a/sound/combowhore.wav b/sound/combowhore.wav deleted file mode 100755 index 802efbe4..00000000 Binary files a/sound/combowhore.wav and /dev/null differ diff --git a/sound/dominating.wav b/sound/dominating.wav deleted file mode 100755 index 1c19acb7..00000000 Binary files a/sound/dominating.wav and /dev/null differ diff --git a/sound/doublekill.wav b/sound/doublekill.wav deleted file mode 100755 index df6022ee..00000000 Binary files a/sound/doublekill.wav and /dev/null differ diff --git a/sound/firstblood.wav b/sound/firstblood.wav deleted file mode 100755 index 3646b4a2..00000000 Binary files a/sound/firstblood.wav and /dev/null differ diff --git a/sound/godlike.wav b/sound/godlike.wav deleted file mode 100755 index 6c3dce8a..00000000 Binary files a/sound/godlike.wav and /dev/null differ diff --git a/sound/hattrick.wav b/sound/hattrick.wav deleted file mode 100755 index 59071307..00000000 Binary files a/sound/hattrick.wav and /dev/null differ diff --git a/sound/headhunter.wav b/sound/headhunter.wav deleted file mode 100755 index e7396023..00000000 Binary files a/sound/headhunter.wav and /dev/null differ diff --git a/sound/headshot.wav b/sound/headshot.wav deleted file mode 100755 index 6a768614..00000000 Binary files a/sound/headshot.wav and /dev/null differ diff --git a/sound/holyshit.wav b/sound/holyshit.wav deleted file mode 100755 index 4b2da972..00000000 Binary files a/sound/holyshit.wav and /dev/null differ diff --git a/sound/humiliation.wav b/sound/humiliation.wav deleted file mode 100755 index 170eabc2..00000000 Binary files a/sound/humiliation.wav and /dev/null differ diff --git a/sound/impressive.wav b/sound/impressive.wav deleted file mode 100755 index 09a48715..00000000 Binary files a/sound/impressive.wav and /dev/null differ diff --git a/sound/killingspree.wav b/sound/killingspree.wav deleted file mode 100755 index e7cb3ba9..00000000 Binary files a/sound/killingspree.wav and /dev/null differ diff --git a/sound/ludicrouskill.wav b/sound/ludicrouskill.wav deleted file mode 100755 index a6c0aca2..00000000 Binary files a/sound/ludicrouskill.wav and /dev/null differ diff --git a/sound/megakill.wav b/sound/megakill.wav deleted file mode 100755 index 022d135c..00000000 Binary files a/sound/megakill.wav and /dev/null differ diff --git a/sound/monsterkill.wav b/sound/monsterkill.wav deleted file mode 100755 index 1dfb0698..00000000 Binary files a/sound/monsterkill.wav and /dev/null differ diff --git a/sound/multikill.wav b/sound/multikill.wav deleted file mode 100755 index 0a9f1f66..00000000 Binary files a/sound/multikill.wav and /dev/null differ diff --git a/sound/perfect.wav b/sound/perfect.wav deleted file mode 100755 index a0a6c25c..00000000 Binary files a/sound/perfect.wav and /dev/null differ diff --git a/sound/play.wav b/sound/play.wav deleted file mode 100755 index f9300dbb..00000000 Binary files a/sound/play.wav and /dev/null differ diff --git a/sound/prepare.wav b/sound/prepare.wav deleted file mode 100755 index 4ac754eb..00000000 Binary files a/sound/prepare.wav and /dev/null differ diff --git a/sound/rampage.wav b/sound/rampage.wav deleted file mode 100755 index 97324ab1..00000000 Binary files a/sound/rampage.wav and /dev/null differ diff --git a/sound/teamkiller.wav b/sound/teamkiller.wav deleted file mode 100755 index f9bbb140..00000000 Binary files a/sound/teamkiller.wav and /dev/null differ diff --git a/sound/triplekill.wav b/sound/triplekill.wav deleted file mode 100755 index 39485e73..00000000 Binary files a/sound/triplekill.wav and /dev/null differ diff --git a/sound/ultrakill.wav b/sound/ultrakill.wav deleted file mode 100755 index 448e67e9..00000000 Binary files a/sound/ultrakill.wav and /dev/null differ diff --git a/sound/unstoppable.wav b/sound/unstoppable.wav deleted file mode 100755 index 59e202f1..00000000 Binary files a/sound/unstoppable.wav and /dev/null differ diff --git a/sound/wickedsick.wav b/sound/wickedsick.wav deleted file mode 100755 index 937709df..00000000 Binary files a/sound/wickedsick.wav and /dev/null differ