├── .gitattributes ├── .gitignore ├── RayTwol.sln └── RayTwol ├── App.config ├── App.xaml ├── App.xaml.cs ├── OpenTK.dll ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── RayTwol.csproj ├── RayTwol ├── GameSync.cs ├── Gizmos.cs ├── Global.cs ├── InputAction.cs ├── MainRaytwolStuff.cs ├── Memory.cs ├── Objects.cs ├── Primitives.cs ├── Rendering.cs ├── Setup.cs ├── SpacialSystems.cs └── Useful.cs ├── Windows ├── Downloader.xaml ├── Downloader.xaml.cs ├── Help.xaml ├── Help.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── SetupWindow.xaml ├── SetupWindow.xaml.cs ├── Warning.xaml └── Warning.xaml.cs ├── graphics ├── icon512.ico ├── logo.png └── splash_trans.psd ├── icont512.ico └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/.gitignore -------------------------------------------------------------------------------- /RayTwol.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol.sln -------------------------------------------------------------------------------- /RayTwol/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/App.config -------------------------------------------------------------------------------- /RayTwol/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/App.xaml -------------------------------------------------------------------------------- /RayTwol/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/App.xaml.cs -------------------------------------------------------------------------------- /RayTwol/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/OpenTK.dll -------------------------------------------------------------------------------- /RayTwol/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RayTwol/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RayTwol/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Properties/Resources.resx -------------------------------------------------------------------------------- /RayTwol/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RayTwol/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Properties/Settings.settings -------------------------------------------------------------------------------- /RayTwol/RayTwol.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol.csproj -------------------------------------------------------------------------------- /RayTwol/RayTwol/GameSync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol/GameSync.cs -------------------------------------------------------------------------------- /RayTwol/RayTwol/Gizmos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol/Gizmos.cs -------------------------------------------------------------------------------- /RayTwol/RayTwol/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol/Global.cs -------------------------------------------------------------------------------- /RayTwol/RayTwol/InputAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol/InputAction.cs -------------------------------------------------------------------------------- /RayTwol/RayTwol/MainRaytwolStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol/MainRaytwolStuff.cs -------------------------------------------------------------------------------- /RayTwol/RayTwol/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol/Memory.cs -------------------------------------------------------------------------------- /RayTwol/RayTwol/Objects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol/Objects.cs -------------------------------------------------------------------------------- /RayTwol/RayTwol/Primitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol/Primitives.cs -------------------------------------------------------------------------------- /RayTwol/RayTwol/Rendering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol/Rendering.cs -------------------------------------------------------------------------------- /RayTwol/RayTwol/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol/Setup.cs -------------------------------------------------------------------------------- /RayTwol/RayTwol/SpacialSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol/SpacialSystems.cs -------------------------------------------------------------------------------- /RayTwol/RayTwol/Useful.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/RayTwol/Useful.cs -------------------------------------------------------------------------------- /RayTwol/Windows/Downloader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Windows/Downloader.xaml -------------------------------------------------------------------------------- /RayTwol/Windows/Downloader.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Windows/Downloader.xaml.cs -------------------------------------------------------------------------------- /RayTwol/Windows/Help.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Windows/Help.xaml -------------------------------------------------------------------------------- /RayTwol/Windows/Help.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Windows/Help.xaml.cs -------------------------------------------------------------------------------- /RayTwol/Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /RayTwol/Windows/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Windows/MainWindow.xaml.cs -------------------------------------------------------------------------------- /RayTwol/Windows/SetupWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Windows/SetupWindow.xaml -------------------------------------------------------------------------------- /RayTwol/Windows/SetupWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Windows/SetupWindow.xaml.cs -------------------------------------------------------------------------------- /RayTwol/Windows/Warning.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Windows/Warning.xaml -------------------------------------------------------------------------------- /RayTwol/Windows/Warning.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/Windows/Warning.xaml.cs -------------------------------------------------------------------------------- /RayTwol/graphics/icon512.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/graphics/icon512.ico -------------------------------------------------------------------------------- /RayTwol/graphics/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/graphics/logo.png -------------------------------------------------------------------------------- /RayTwol/graphics/splash_trans.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/graphics/splash_trans.psd -------------------------------------------------------------------------------- /RayTwol/icont512.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/icont512.ico -------------------------------------------------------------------------------- /RayTwol/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adsolution/RayTwol/HEAD/RayTwol/packages.config --------------------------------------------------------------------------------