├── .gitignore ├── LICENSE.md ├── NoesisGUI.MonoGameWrapper.sln ├── NoesisGUI.MonoGameWrapper ├── Config │ ├── HitTestIgnoreDelegate.cs │ └── NoesisConfig.cs ├── Helpers │ ├── DeviceState │ │ ├── DeviceStateHelper.cs │ │ └── DeviceStateHelperD3D11.cs │ ├── KeyConverter.cs │ ├── NoesisTextureHelper.cs │ └── XnaKeysComparer.cs ├── Input │ ├── Devices │ │ ├── Keyboard.cs │ │ └── Mouse.cs │ ├── InputManager.cs │ ├── Platforms │ │ └── Windows │ │ │ ├── KeyboardImeWinforms.cs │ │ │ ├── Win32MessageCode.cs │ │ │ └── Win32Native.cs │ └── SystemSettings │ │ ├── InputSettingsHelper.cs │ │ └── WinFormsInputSettingsHelper.cs ├── NoesisGUI.MonoGameWrapper.csproj ├── NoesisGUI.MonoGameWrapper.csproj.DotSettings ├── NoesisViewWrapper.cs ├── NoesisWrapper.cs └── Providers │ ├── ContentTextureProvider.cs │ ├── FolderFontProvider.cs │ ├── FolderTextureProvider.cs │ ├── FolderXamlProvider.cs │ └── NoesisProviderManager.cs ├── README.md └── TestMonoGameNoesisGUI ├── GUI ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Resources.xaml ├── Samples │ ├── Animation.xaml │ ├── Brushes.xaml │ ├── Button.xaml │ ├── Canvas.xaml │ ├── CheckBox.xaml │ ├── ComboBox.xaml │ ├── ContextMenu.xaml │ ├── DockPanel.xaml │ ├── Effects.xaml │ ├── Expander.xaml │ ├── Fonts │ │ ├── Aero Matics Regular.ttf │ │ ├── Caladea-Regular.ttf │ │ ├── CourierPrime-Regular.ttf │ │ ├── Muli-Bold.ttf │ │ ├── Muli-Italic.ttf │ │ ├── Muli-Regular.ttf │ │ └── WidgetIcons.ttf │ ├── Grid.xaml │ ├── GroupBox.xaml │ ├── Hyperlink.xaml │ ├── Image.xaml │ ├── Images │ │ ├── Nature.png │ │ ├── file.png │ │ ├── floppy-disk.png │ │ ├── folder-closed.png │ │ ├── folder-open.png │ │ ├── recycling-bin.png │ │ └── search.png │ ├── ItemsControl.xaml │ ├── ListBox.xaml │ ├── ListView.xaml │ ├── Menu.xaml │ ├── PasswordBox.xaml │ ├── ProgressBar.xaml │ ├── RadioButton.xaml │ ├── RepeatButton.xaml │ ├── ScrollViewer.xaml │ ├── Slider.xaml │ ├── StackPanel.xaml │ ├── StatusBar.xaml │ ├── TabControl.xaml │ ├── TextBlock.xaml │ ├── TextBox.xaml │ ├── ToggleButton.xaml │ ├── ToolBar.xaml │ ├── ToolTip.xaml │ ├── TreeView.xaml │ ├── UniformGrid.xaml │ └── WrapPanel.xaml └── Theme │ ├── Fonts │ ├── PT Root UI_Bold.otf │ └── PT Root UI_Regular.otf │ ├── NoesisTheme.Brushes.DarkAqua.xaml │ ├── NoesisTheme.Brushes.DarkBlue.xaml │ ├── NoesisTheme.Brushes.DarkCrimson.xaml │ ├── NoesisTheme.Brushes.DarkEmerald.xaml │ ├── NoesisTheme.Brushes.DarkGreen.xaml │ ├── NoesisTheme.Brushes.DarkLime.xaml │ ├── NoesisTheme.Brushes.DarkOrange.xaml │ ├── NoesisTheme.Brushes.DarkPurple.xaml │ ├── NoesisTheme.Brushes.DarkRed.xaml │ ├── NoesisTheme.Brushes.LightAqua.xaml │ ├── NoesisTheme.Brushes.LightBlue.xaml │ ├── NoesisTheme.Brushes.LightCrimson.xaml │ ├── NoesisTheme.Brushes.LightEmerald.xaml │ ├── NoesisTheme.Brushes.LightGreen.xaml │ ├── NoesisTheme.Brushes.LightLime.xaml │ ├── NoesisTheme.Brushes.LightOrange.xaml │ ├── NoesisTheme.Brushes.LightPurple.xaml │ ├── NoesisTheme.Brushes.LightRed.xaml │ ├── NoesisTheme.Colors.Dark.xaml │ ├── NoesisTheme.Colors.Light.xaml │ ├── NoesisTheme.DarkAqua.xaml │ ├── NoesisTheme.DarkBlue.xaml │ ├── NoesisTheme.DarkCrimson.xaml │ ├── NoesisTheme.DarkEmerald.xaml │ ├── NoesisTheme.DarkGreen.xaml │ ├── NoesisTheme.DarkLime.xaml │ ├── NoesisTheme.DarkOrange.xaml │ ├── NoesisTheme.DarkPurple.xaml │ ├── NoesisTheme.DarkRed.xaml │ ├── NoesisTheme.Fonts.xaml │ ├── NoesisTheme.LightAqua.xaml │ ├── NoesisTheme.LightBlue.xaml │ ├── NoesisTheme.LightCrimson.xaml │ ├── NoesisTheme.LightEmerald.xaml │ ├── NoesisTheme.LightGreen.xaml │ ├── NoesisTheme.LightLime.xaml │ ├── NoesisTheme.LightOrange.xaml │ ├── NoesisTheme.LightPurple.xaml │ ├── NoesisTheme.LightRed.xaml │ └── NoesisTheme.Styles.xaml ├── GameWithNoesis.cs ├── Icon.ico ├── Program.cs ├── TestMonoGameNoesisGUI.csproj ├── app.config ├── app.manifest └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper.sln -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Config/HitTestIgnoreDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Config/HitTestIgnoreDelegate.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Config/NoesisConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Config/NoesisConfig.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Helpers/DeviceState/DeviceStateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Helpers/DeviceState/DeviceStateHelper.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Helpers/DeviceState/DeviceStateHelperD3D11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Helpers/DeviceState/DeviceStateHelperD3D11.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Helpers/KeyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Helpers/KeyConverter.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Helpers/NoesisTextureHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Helpers/NoesisTextureHelper.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Helpers/XnaKeysComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Helpers/XnaKeysComparer.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Input/Devices/Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Input/Devices/Keyboard.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Input/Devices/Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Input/Devices/Mouse.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Input/InputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Input/InputManager.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Input/Platforms/Windows/KeyboardImeWinforms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Input/Platforms/Windows/KeyboardImeWinforms.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Input/Platforms/Windows/Win32MessageCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Input/Platforms/Windows/Win32MessageCode.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Input/Platforms/Windows/Win32Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Input/Platforms/Windows/Win32Native.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Input/SystemSettings/InputSettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Input/SystemSettings/InputSettingsHelper.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Input/SystemSettings/WinFormsInputSettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Input/SystemSettings/WinFormsInputSettingsHelper.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/NoesisGUI.MonoGameWrapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/NoesisGUI.MonoGameWrapper.csproj -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/NoesisGUI.MonoGameWrapper.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/NoesisGUI.MonoGameWrapper.csproj.DotSettings -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/NoesisViewWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/NoesisViewWrapper.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/NoesisWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/NoesisWrapper.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Providers/ContentTextureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Providers/ContentTextureProvider.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Providers/FolderFontProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Providers/FolderFontProvider.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Providers/FolderTextureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Providers/FolderTextureProvider.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Providers/FolderXamlProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Providers/FolderXamlProvider.cs -------------------------------------------------------------------------------- /NoesisGUI.MonoGameWrapper/Providers/NoesisProviderManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/NoesisGUI.MonoGameWrapper/Providers/NoesisProviderManager.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/README.md -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/MainWindow.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Resources.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Animation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Animation.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Brushes.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Button.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Canvas.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Canvas.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/CheckBox.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/ComboBox.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/ContextMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/ContextMenu.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/DockPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/DockPanel.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Effects.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Effects.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Expander.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Fonts/Aero Matics Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Fonts/Aero Matics Regular.ttf -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Fonts/Caladea-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Fonts/Caladea-Regular.ttf -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Fonts/CourierPrime-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Fonts/CourierPrime-Regular.ttf -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Fonts/Muli-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Fonts/Muli-Bold.ttf -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Fonts/Muli-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Fonts/Muli-Italic.ttf -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Fonts/Muli-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Fonts/Muli-Regular.ttf -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Fonts/WidgetIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Fonts/WidgetIcons.ttf -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Grid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Grid.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/GroupBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/GroupBox.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Hyperlink.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Hyperlink.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Image.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Image.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Images/Nature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Images/Nature.png -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Images/file.png -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Images/floppy-disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Images/floppy-disk.png -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Images/folder-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Images/folder-closed.png -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Images/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Images/folder-open.png -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Images/recycling-bin.png -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Images/search.png -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/ItemsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/ItemsControl.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/ListBox.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/ListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/ListView.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Menu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Menu.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/PasswordBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/PasswordBox.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/ProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/ProgressBar.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/RadioButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/RadioButton.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/RepeatButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/RepeatButton.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/ScrollViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/ScrollViewer.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/Slider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/Slider.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/StackPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/StackPanel.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/StatusBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/StatusBar.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/TabControl.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/TextBlock.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/TextBox.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/ToggleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/ToggleButton.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/ToolBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/ToolBar.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/ToolTip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/ToolTip.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/TreeView.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/UniformGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/UniformGrid.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Samples/WrapPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Samples/WrapPanel.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/Fonts/PT Root UI_Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/Fonts/PT Root UI_Bold.otf -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/Fonts/PT Root UI_Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/Fonts/PT Root UI_Regular.otf -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkAqua.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkAqua.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkBlue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkBlue.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkCrimson.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkCrimson.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkEmerald.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkEmerald.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkGreen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkGreen.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkLime.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkLime.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkOrange.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkOrange.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkPurple.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkPurple.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkRed.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.DarkRed.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightAqua.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightAqua.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightBlue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightBlue.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightCrimson.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightCrimson.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightEmerald.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightEmerald.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightGreen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightGreen.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightLime.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightLime.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightOrange.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightOrange.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightPurple.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightPurple.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightRed.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Brushes.LightRed.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Colors.Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Colors.Dark.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Colors.Light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Colors.Light.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkAqua.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkAqua.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkBlue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkBlue.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkCrimson.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkCrimson.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkEmerald.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkEmerald.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkGreen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkGreen.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkLime.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkLime.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkOrange.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkOrange.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkPurple.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkPurple.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkRed.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.DarkRed.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Fonts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Fonts.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightAqua.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightAqua.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightBlue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightBlue.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightCrimson.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightCrimson.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightEmerald.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightEmerald.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightGreen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightGreen.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightLime.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightLime.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightOrange.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightOrange.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightPurple.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightPurple.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightRed.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.LightRed.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GUI/Theme/NoesisTheme.Styles.xaml -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/GameWithNoesis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/GameWithNoesis.cs -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/Icon.ico -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/Program.cs -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/TestMonoGameNoesisGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/TestMonoGameNoesisGUI.csproj -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/app.config -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/app.manifest -------------------------------------------------------------------------------- /TestMonoGameNoesisGUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomicTorchStudio/NoesisGUI.MonoGameWrapper/HEAD/TestMonoGameNoesisGUI/packages.config --------------------------------------------------------------------------------