├── README.md ├── maps ├── de_cache.bsp ├── de_cache.zip ├── de_dust2.bsp ├── de_dust2.zip ├── de_inferno.bsp ├── de_inferno.zip ├── de_mirage.bsp ├── de_mirage.zip ├── de_overpass.bsp ├── de_overpass.zip ├── de_train.bsp ├── de_train.zip └── list.txt └── src ├── BSPFile.cs ├── BSPFlags.cs ├── ContentsFlag.cs ├── FastSize.cs ├── Polygon.cs ├── StaticPropDictLump_t.cs ├── StaticPropLeafLump_t.cs ├── StaticPropLump_t.cs ├── StreamExtensions.cs ├── VPlane.cs ├── Vector3.cs ├── cplane_t.cs ├── dbrush_t.cs ├── dbrushside_t.cs ├── dedge_t.cs ├── dface_t.cs ├── dgamelump_t.cs ├── dgamelumpheader_t.cs ├── dheader_t.cs ├── dleaf_t.cs ├── dnode_t.cs ├── dplane_t.cs ├── eLumpIndex.cs ├── lump_t.cs ├── mvertex_t.cs ├── snode_t.cs ├── texinfo_t.cs └── trace_t.cs /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/README.md -------------------------------------------------------------------------------- /maps/de_cache.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/de_cache.bsp -------------------------------------------------------------------------------- /maps/de_cache.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/de_cache.zip -------------------------------------------------------------------------------- /maps/de_dust2.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/de_dust2.bsp -------------------------------------------------------------------------------- /maps/de_dust2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/de_dust2.zip -------------------------------------------------------------------------------- /maps/de_inferno.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/de_inferno.bsp -------------------------------------------------------------------------------- /maps/de_inferno.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/de_inferno.zip -------------------------------------------------------------------------------- /maps/de_mirage.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/de_mirage.bsp -------------------------------------------------------------------------------- /maps/de_mirage.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/de_mirage.zip -------------------------------------------------------------------------------- /maps/de_overpass.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/de_overpass.bsp -------------------------------------------------------------------------------- /maps/de_overpass.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/de_overpass.zip -------------------------------------------------------------------------------- /maps/de_train.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/de_train.bsp -------------------------------------------------------------------------------- /maps/de_train.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/de_train.zip -------------------------------------------------------------------------------- /maps/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/maps/list.txt -------------------------------------------------------------------------------- /src/BSPFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/BSPFile.cs -------------------------------------------------------------------------------- /src/BSPFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/BSPFlags.cs -------------------------------------------------------------------------------- /src/ContentsFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/ContentsFlag.cs -------------------------------------------------------------------------------- /src/FastSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/FastSize.cs -------------------------------------------------------------------------------- /src/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/Polygon.cs -------------------------------------------------------------------------------- /src/StaticPropDictLump_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/StaticPropDictLump_t.cs -------------------------------------------------------------------------------- /src/StaticPropLeafLump_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/StaticPropLeafLump_t.cs -------------------------------------------------------------------------------- /src/StaticPropLump_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/StaticPropLump_t.cs -------------------------------------------------------------------------------- /src/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/StreamExtensions.cs -------------------------------------------------------------------------------- /src/VPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/VPlane.cs -------------------------------------------------------------------------------- /src/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/Vector3.cs -------------------------------------------------------------------------------- /src/cplane_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/cplane_t.cs -------------------------------------------------------------------------------- /src/dbrush_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/dbrush_t.cs -------------------------------------------------------------------------------- /src/dbrushside_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/dbrushside_t.cs -------------------------------------------------------------------------------- /src/dedge_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/dedge_t.cs -------------------------------------------------------------------------------- /src/dface_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/dface_t.cs -------------------------------------------------------------------------------- /src/dgamelump_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/dgamelump_t.cs -------------------------------------------------------------------------------- /src/dgamelumpheader_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/dgamelumpheader_t.cs -------------------------------------------------------------------------------- /src/dheader_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/dheader_t.cs -------------------------------------------------------------------------------- /src/dleaf_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/dleaf_t.cs -------------------------------------------------------------------------------- /src/dnode_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/dnode_t.cs -------------------------------------------------------------------------------- /src/dplane_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/dplane_t.cs -------------------------------------------------------------------------------- /src/eLumpIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/eLumpIndex.cs -------------------------------------------------------------------------------- /src/lump_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/lump_t.cs -------------------------------------------------------------------------------- /src/mvertex_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/mvertex_t.cs -------------------------------------------------------------------------------- /src/snode_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/snode_t.cs -------------------------------------------------------------------------------- /src/texinfo_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/texinfo_t.cs -------------------------------------------------------------------------------- /src/trace_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRioMiner/CsgoBetterExternalRaytrace/HEAD/src/trace_t.cs --------------------------------------------------------------------------------