diff --git a/Sledgemapper/Content/Content.mgcb b/Sledgemapper/Content/Content.mgcb index 7b86017..661c1e1 100644 --- a/Sledgemapper/Content/Content.mgcb +++ b/Sledgemapper/Content/Content.mgcb @@ -93,6 +93,42 @@ /processorParam:TextureFormat=Compressed /build:fonts/font99.spritefont +#begin icon_delete.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:icon_delete.png + +#begin icon_line.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:icon_line.png + +#begin icon_room.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:icon_room.png + #begin location.png /importer:TextureImporter /processor:TextureProcessor diff --git a/Sledgemapper/Content/icon_delete.png b/Sledgemapper/Content/icon_delete.png new file mode 100644 index 0000000..ecec945 Binary files /dev/null and b/Sledgemapper/Content/icon_delete.png differ diff --git a/Sledgemapper/Content/icon_line.png b/Sledgemapper/Content/icon_line.png new file mode 100644 index 0000000..43004ec Binary files /dev/null and b/Sledgemapper/Content/icon_line.png differ diff --git a/Sledgemapper/Content/icon_room.png b/Sledgemapper/Content/icon_room.png new file mode 100644 index 0000000..a313a06 Binary files /dev/null and b/Sledgemapper/Content/icon_room.png differ diff --git a/Sledgemapper/Sledgemapper.cs b/Sledgemapper/Sledgemapper.cs index 0dceb8f..fda2bf8 100644 --- a/Sledgemapper/Sledgemapper.cs +++ b/Sledgemapper/Sledgemapper.cs @@ -176,6 +176,9 @@ ResetRenderTarget(); _eye = Content.Load("eye"); _location = Content.Load("location"); _comment = Content.Load("comment"); + _mainWidget.BtnToolbarLine.Image = new TextureRegion(Content.Load("icon_line")); + _mainWidget.BtnToolbarRoom.Image = new TextureRegion(Content.Load("icon_room")); + _mainWidget.BtnToolbarDelete.Image = new TextureRegion(Content.Load("icon_delete")); _desktop.Root = _mainWidget; }