diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..94ba4be --- /dev/null +++ b/.editorconfig @@ -0,0 +1,113 @@ +[*] +charset = utf-8 +end_of_line = lf +trim_trailing_whitespace = true +insert_final_newline = true +indent_style = space +indent_size = 4 + +# Microsoft .NET properties +csharp_new_line_before_catch = false +csharp_new_line_before_else = false +csharp_new_line_before_finally = false +csharp_new_line_before_members_in_object_initializers = false +csharp_new_line_before_open_brace = none +csharp_new_line_between_query_expression_clauses = false +csharp_preferred_modifier_order = public, private, protected, internal, new, static, abstract, virtual, sealed, readonly, override, extern, unsafe, volatile, async:suggestion +csharp_space_after_cast = true +csharp_style_var_elsewhere = true:suggestion +csharp_style_var_for_built_in_types = true:suggestion +csharp_style_var_when_type_is_apparent = true:suggestion +dotnet_naming_rule.private_constants_rule.severity = warning +dotnet_naming_rule.private_constants_rule.style = upper_camel_case_style +dotnet_naming_rule.private_constants_rule.symbols = private_constants_symbols +dotnet_naming_rule.private_instance_fields_rule.severity = warning +dotnet_naming_rule.private_instance_fields_rule.style = lower_camel_case_style +dotnet_naming_rule.private_instance_fields_rule.symbols = private_instance_fields_symbols +dotnet_naming_rule.private_static_fields_rule.severity = warning +dotnet_naming_rule.private_static_fields_rule.style = lower_camel_case_style +dotnet_naming_rule.private_static_fields_rule.symbols = private_static_fields_symbols +dotnet_naming_rule.private_static_readonly_rule.severity = warning +dotnet_naming_rule.private_static_readonly_rule.style = upper_camel_case_style +dotnet_naming_rule.private_static_readonly_rule.symbols = private_static_readonly_symbols +dotnet_naming_style.lower_camel_case_style.capitalization = camel_case +dotnet_naming_style.upper_camel_case_style.capitalization = pascal_case +dotnet_naming_symbols.private_constants_symbols.applicable_accessibilities = private +dotnet_naming_symbols.private_constants_symbols.applicable_kinds = field +dotnet_naming_symbols.private_constants_symbols.required_modifiers = const +dotnet_naming_symbols.private_instance_fields_symbols.applicable_accessibilities = private +dotnet_naming_symbols.private_instance_fields_symbols.applicable_kinds = field +dotnet_naming_symbols.private_static_fields_symbols.applicable_accessibilities = private +dotnet_naming_symbols.private_static_fields_symbols.applicable_kinds = field +dotnet_naming_symbols.private_static_fields_symbols.required_modifiers = static +dotnet_naming_symbols.private_static_readonly_symbols.applicable_accessibilities = private +dotnet_naming_symbols.private_static_readonly_symbols.applicable_kinds = field +dotnet_naming_symbols.private_static_readonly_symbols.required_modifiers = static, readonly +dotnet_style_parentheses_in_arithmetic_binary_operators = never_if_unnecessary:none +dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:none +dotnet_style_parentheses_in_relational_binary_operators = never_if_unnecessary:none +dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion +dotnet_style_predefined_type_for_member_access = true:suggestion +dotnet_style_qualification_for_event = true:suggestion +dotnet_style_qualification_for_field = true:suggestion +dotnet_style_qualification_for_method = true:suggestion +dotnet_style_qualification_for_property = true:suggestion +dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion + +# ReSharper properties +resharper_blank_lines_after_block_statements = 0 +resharper_blank_lines_around_auto_property = 0 +resharper_blank_lines_around_local_method = 0 +resharper_blank_lines_around_property = 0 +resharper_blank_lines_inside_type = 1 +resharper_braces_for_dowhile = required_for_multiline +resharper_braces_for_fixed = required_for_multiline +resharper_braces_for_for = required_for_multiline +resharper_braces_for_foreach = required_for_multiline +resharper_braces_for_ifelse = required_for_multiline +resharper_braces_for_lock = required_for_multiline +resharper_braces_for_using = required_for_multiline +resharper_braces_for_while = required_for_multiline +resharper_braces_redundant = false +resharper_csharp_blank_lines_around_field = 0 +resharper_csharp_blank_lines_around_single_line_invocable = 1 +resharper_csharp_empty_block_style = together +resharper_csharp_keep_blank_lines_in_code = 1 +resharper_csharp_keep_blank_lines_in_declarations = 1 +resharper_csharp_max_line_length = unset +resharper_csharp_stick_comment = false +resharper_csharp_wrap_before_ternary_opsigns = false +resharper_csharp_wrap_multiple_declaration_style = wrap_if_long +resharper_csharp_wrap_multiple_type_parameter_constraints_style = wrap_if_long +resharper_csharp_wrap_ternary_expr_style = wrap_if_long +resharper_force_attribute_style = join +resharper_indent_nested_fixed_stmt = true +resharper_indent_nested_foreach_stmt = true +resharper_indent_nested_for_stmt = true +resharper_indent_nested_lock_stmt = true +resharper_indent_nested_usings_stmt = true +resharper_indent_nested_while_stmt = true +resharper_indent_preprocessor_if = usual_indent +resharper_indent_preprocessor_other = usual_indent +resharper_keep_existing_declaration_parens_arrangement = false +resharper_keep_existing_embedded_arrangement = false +resharper_keep_existing_expr_member_arrangement = false +resharper_keep_existing_property_patterns_arrangement = false +resharper_keep_existing_switch_expression_arrangement = false +resharper_parentheses_redundancy_style = remove +resharper_place_attribute_on_same_line = false +resharper_place_expr_accessor_on_single_line = true +resharper_place_expr_method_on_single_line = true +resharper_place_expr_property_on_single_line = true +resharper_place_simple_accessor_on_single_line = false +resharper_place_simple_anonymousmethod_on_single_line = false +resharper_place_simple_embedded_statement_on_same_line = false +resharper_space_around_arrow_op = true +resharper_space_within_empty_braces = false +resharper_space_within_single_line_array_initializer_braces = false +resharper_static_members_qualify_members = field, property, event, method +resharper_wrap_for_stmt_header_style = wrap_if_long +resharper_wrap_object_and_collection_initializer_style = wrap_if_long +resharper_xmldoc_attribute_indent = align_by_first_attribute +resharper_xmldoc_attribute_style = on_single_line +resharper_xmldoc_pi_attribute_style = on_single_line diff --git a/Demos.Android/Activity1.cs b/Demos.Android/Activity1.cs index d9d46b8..97def0d 100644 --- a/Demos.Android/Activity1.cs +++ b/Demos.Android/Activity1.cs @@ -51,4 +51,4 @@ namespace Demos.Android { } } -} \ No newline at end of file +} diff --git a/Demos.Android/Properties/AssemblyInfo.cs b/Demos.Android/Properties/AssemblyInfo.cs index 5093a42..8e3101e 100644 --- a/Demos.Android/Properties/AssemblyInfo.cs +++ b/Demos.Android/Properties/AssemblyInfo.cs @@ -12,4 +12,4 @@ using System.Runtime.InteropServices; [assembly: AssemblyCopyright("Copyright © 2018")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] \ No newline at end of file +[assembly: ComVisible(false)] diff --git a/Demos.DesktopGL/Program.cs b/Demos.DesktopGL/Program.cs index 952fb10..5915bfc 100644 --- a/Demos.DesktopGL/Program.cs +++ b/Demos.DesktopGL/Program.cs @@ -11,4 +11,4 @@ namespace Demos.DesktopGL { } } -} \ No newline at end of file +} diff --git a/Demos/AnimationDemo.cs b/Demos/AnimationDemo.cs index d8119a4..02b7f66 100644 --- a/Demos/AnimationDemo.cs +++ b/Demos/AnimationDemo.cs @@ -104,4 +104,4 @@ namespace Demos { } } -} \ No newline at end of file +} diff --git a/Demos/AutoTilingDemo.cs b/Demos/AutoTilingDemo.cs index a4811f2..0ce21d1 100644 --- a/Demos/AutoTilingDemo.cs +++ b/Demos/AutoTilingDemo.cs @@ -73,4 +73,4 @@ namespace Demos { } } -} \ No newline at end of file +} diff --git a/Demos/Demo.cs b/Demos/Demo.cs index 40958ba..b3b67a4 100644 --- a/Demos/Demo.cs +++ b/Demos/Demo.cs @@ -32,4 +32,4 @@ namespace Demos { } } -} \ No newline at end of file +} diff --git a/Demos/EasingsDemo.cs b/Demos/EasingsDemo.cs index aa67a52..c28377b 100644 --- a/Demos/EasingsDemo.cs +++ b/Demos/EasingsDemo.cs @@ -63,4 +63,4 @@ namespace Demos { } } -} \ No newline at end of file +} diff --git a/Demos/GameImpl.cs b/Demos/GameImpl.cs index e62b9c4..664e52c 100644 --- a/Demos/GameImpl.cs +++ b/Demos/GameImpl.cs @@ -128,4 +128,4 @@ namespace Demos { } } -} \ No newline at end of file +} diff --git a/Demos/PathfindingDemo.cs b/Demos/PathfindingDemo.cs index 6b34441..2325d76 100644 --- a/Demos/PathfindingDemo.cs +++ b/Demos/PathfindingDemo.cs @@ -102,4 +102,4 @@ namespace Demos { } } -} \ No newline at end of file +} diff --git a/Demos/UiDemo.cs b/Demos/UiDemo.cs index 0ac2573..86ec24a 100644 --- a/Demos/UiDemo.cs +++ b/Demos/UiDemo.cs @@ -302,4 +302,4 @@ namespace Demos { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Content/JsonReader.cs b/MLEM.Data/Content/JsonReader.cs index 83a0b11..6b901a3 100644 --- a/MLEM.Data/Content/JsonReader.cs +++ b/MLEM.Data/Content/JsonReader.cs @@ -23,4 +23,4 @@ namespace MLEM.Data.Content { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Content/RawContentManager.cs b/MLEM.Data/Content/RawContentManager.cs index a4c8b63..db08b7d 100644 --- a/MLEM.Data/Content/RawContentManager.cs +++ b/MLEM.Data/Content/RawContentManager.cs @@ -125,4 +125,4 @@ namespace MLEM.Data.Content { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Content/RawContentReader.cs b/MLEM.Data/Content/RawContentReader.cs index 43c5f46..23c91d5 100644 --- a/MLEM.Data/Content/RawContentReader.cs +++ b/MLEM.Data/Content/RawContentReader.cs @@ -58,4 +58,4 @@ namespace MLEM.Data.Content { protected abstract T Read(RawContentManager manager, string assetPath, Stream stream, T existing); } -} \ No newline at end of file +} diff --git a/MLEM.Data/Content/SongReader.cs b/MLEM.Data/Content/SongReader.cs index e6adb39..51796b2 100644 --- a/MLEM.Data/Content/SongReader.cs +++ b/MLEM.Data/Content/SongReader.cs @@ -17,4 +17,4 @@ namespace MLEM.Data.Content { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Content/SoundEffectReader.cs b/MLEM.Data/Content/SoundEffectReader.cs index fdac53b..c22b13f 100644 --- a/MLEM.Data/Content/SoundEffectReader.cs +++ b/MLEM.Data/Content/SoundEffectReader.cs @@ -16,4 +16,4 @@ namespace MLEM.Data.Content { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Content/Texture2DReader.cs b/MLEM.Data/Content/Texture2DReader.cs index 89ec323..27e4c9f 100644 --- a/MLEM.Data/Content/Texture2DReader.cs +++ b/MLEM.Data/Content/Texture2DReader.cs @@ -36,4 +36,4 @@ namespace MLEM.Data.Content { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Content/XmlReader.cs b/MLEM.Data/Content/XmlReader.cs index 0a784f5..dc82584 100644 --- a/MLEM.Data/Content/XmlReader.cs +++ b/MLEM.Data/Content/XmlReader.cs @@ -22,4 +22,4 @@ namespace MLEM.Data.Content { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/ContentExtensions.cs b/MLEM.Data/ContentExtensions.cs index f4b2801..96fce9c 100644 --- a/MLEM.Data/ContentExtensions.cs +++ b/MLEM.Data/ContentExtensions.cs @@ -74,4 +74,4 @@ namespace MLEM.Data { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/CopyExtensions.cs b/MLEM.Data/CopyExtensions.cs index 0c28f8a..8e098ca 100644 --- a/MLEM.Data/CopyExtensions.cs +++ b/MLEM.Data/CopyExtensions.cs @@ -116,4 +116,4 @@ namespace MLEM.Data { /// [AttributeUsage(AttributeTargets.Constructor), Obsolete("CopyExtensions has major flaws and insufficient speed compared to other libraries specifically designed for copying objects.")] public class CopyConstructorAttribute : Attribute {} -} \ No newline at end of file +} diff --git a/MLEM.Data/DataTextureAtlas.cs b/MLEM.Data/DataTextureAtlas.cs index 839b930..46c92f7 100644 --- a/MLEM.Data/DataTextureAtlas.cs +++ b/MLEM.Data/DataTextureAtlas.cs @@ -133,4 +133,4 @@ namespace MLEM.Data { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/DynamicEnum.cs b/MLEM.Data/DynamicEnum.cs index 789bfa8..09f9717 100644 --- a/MLEM.Data/DynamicEnum.cs +++ b/MLEM.Data/DynamicEnum.cs @@ -349,4 +349,4 @@ namespace MLEM.Data { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Json/Direction2Converter.cs b/MLEM.Data/Json/Direction2Converter.cs index b4faf6c..043350e 100644 --- a/MLEM.Data/Json/Direction2Converter.cs +++ b/MLEM.Data/Json/Direction2Converter.cs @@ -29,4 +29,4 @@ namespace MLEM.Data.Json { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Json/DynamicEnumConverter.cs b/MLEM.Data/Json/DynamicEnumConverter.cs index 8da3c81..fa034e4 100644 --- a/MLEM.Data/Json/DynamicEnumConverter.cs +++ b/MLEM.Data/Json/DynamicEnumConverter.cs @@ -27,4 +27,4 @@ namespace MLEM.Data.Json { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Json/JsonConverters.cs b/MLEM.Data/Json/JsonConverters.cs index afff3fe..d70118e 100644 --- a/MLEM.Data/Json/JsonConverters.cs +++ b/MLEM.Data/Json/JsonConverters.cs @@ -27,4 +27,4 @@ namespace MLEM.Data.Json { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Json/JsonTypeSafeGenericDataHolder.cs b/MLEM.Data/Json/JsonTypeSafeGenericDataHolder.cs index c432604..d3cbbbe 100644 --- a/MLEM.Data/Json/JsonTypeSafeGenericDataHolder.cs +++ b/MLEM.Data/Json/JsonTypeSafeGenericDataHolder.cs @@ -42,4 +42,4 @@ namespace MLEM.Data.Json { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Json/JsonTypeSafeWrapper.cs b/MLEM.Data/Json/JsonTypeSafeWrapper.cs index d6327e1..ad3f05c 100644 --- a/MLEM.Data/Json/JsonTypeSafeWrapper.cs +++ b/MLEM.Data/Json/JsonTypeSafeWrapper.cs @@ -60,4 +60,4 @@ namespace MLEM.Data.Json { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Json/PointConverter.cs b/MLEM.Data/Json/PointConverter.cs index 69970dc..1a3851a 100644 --- a/MLEM.Data/Json/PointConverter.cs +++ b/MLEM.Data/Json/PointConverter.cs @@ -30,4 +30,4 @@ namespace MLEM.Data.Json { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Json/RectangleConverter.cs b/MLEM.Data/Json/RectangleConverter.cs index da3dddd..18a4af7 100644 --- a/MLEM.Data/Json/RectangleConverter.cs +++ b/MLEM.Data/Json/RectangleConverter.cs @@ -34,4 +34,4 @@ namespace MLEM.Data.Json { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Json/RectangleFConverter.cs b/MLEM.Data/Json/RectangleFConverter.cs index 9002482..6251dd7 100644 --- a/MLEM.Data/Json/RectangleFConverter.cs +++ b/MLEM.Data/Json/RectangleFConverter.cs @@ -34,4 +34,4 @@ namespace MLEM.Data.Json { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Json/StaticJsonConverter.cs b/MLEM.Data/Json/StaticJsonConverter.cs index 2124686..980fbfb 100644 --- a/MLEM.Data/Json/StaticJsonConverter.cs +++ b/MLEM.Data/Json/StaticJsonConverter.cs @@ -65,4 +65,4 @@ namespace MLEM.Data.Json { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/Json/Vector2Converter.cs b/MLEM.Data/Json/Vector2Converter.cs index 3dea869..634d1e6 100644 --- a/MLEM.Data/Json/Vector2Converter.cs +++ b/MLEM.Data/Json/Vector2Converter.cs @@ -30,4 +30,4 @@ namespace MLEM.Data.Json { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/NetBufferSerializer.cs b/MLEM.Data/NetBufferSerializer.cs index db49f88..2bb1d53 100644 --- a/MLEM.Data/NetBufferSerializer.cs +++ b/MLEM.Data/NetBufferSerializer.cs @@ -100,4 +100,4 @@ namespace MLEM.Data { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/NetExtensions.cs b/MLEM.Data/NetExtensions.cs index e6adf14..47adcd5 100644 --- a/MLEM.Data/NetExtensions.cs +++ b/MLEM.Data/NetExtensions.cs @@ -117,4 +117,4 @@ namespace MLEM.Data { } } -} \ No newline at end of file +} diff --git a/MLEM.Data/RuntimeTexturePacker.cs b/MLEM.Data/RuntimeTexturePacker.cs index 32c0b9b..9d6f302 100644 --- a/MLEM.Data/RuntimeTexturePacker.cs +++ b/MLEM.Data/RuntimeTexturePacker.cs @@ -325,4 +325,4 @@ namespace MLEM.Data { } } -} \ No newline at end of file +} diff --git a/MLEM.Extended/Extensions/NumberExtensions.cs b/MLEM.Extended/Extensions/NumberExtensions.cs index 2ffa07a..a66fa84 100644 --- a/MLEM.Extended/Extensions/NumberExtensions.cs +++ b/MLEM.Extended/Extensions/NumberExtensions.cs @@ -41,4 +41,4 @@ namespace MLEM.Extended.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM.Extended/Extensions/RandomExtensions.cs b/MLEM.Extended/Extensions/RandomExtensions.cs index de0bcea..956095d 100644 --- a/MLEM.Extended/Extensions/RandomExtensions.cs +++ b/MLEM.Extended/Extensions/RandomExtensions.cs @@ -40,4 +40,4 @@ namespace MLEM.Extended.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM.Extended/Extensions/SpriteBatchExtensions.cs b/MLEM.Extended/Extensions/SpriteBatchExtensions.cs index c10cea9..d72c511 100644 --- a/MLEM.Extended/Extensions/SpriteBatchExtensions.cs +++ b/MLEM.Extended/Extensions/SpriteBatchExtensions.cs @@ -62,4 +62,4 @@ namespace MLEM.Extended.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM.Extended/Extensions/TextureExtensions.cs b/MLEM.Extended/Extensions/TextureExtensions.cs index 6ad5509..44418ab 100644 --- a/MLEM.Extended/Extensions/TextureExtensions.cs +++ b/MLEM.Extended/Extensions/TextureExtensions.cs @@ -45,4 +45,4 @@ namespace MLEM.Extended.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM.Extended/Font/GenericBitmapFont.cs b/MLEM.Extended/Font/GenericBitmapFont.cs index 8b9a494..50595dd 100644 --- a/MLEM.Extended/Font/GenericBitmapFont.cs +++ b/MLEM.Extended/Font/GenericBitmapFont.cs @@ -43,4 +43,4 @@ namespace MLEM.Extended.Font { } } -} \ No newline at end of file +} diff --git a/MLEM.Extended/Font/GenericStashFont.cs b/MLEM.Extended/Font/GenericStashFont.cs index 9d11fef..cb7f741 100644 --- a/MLEM.Extended/Font/GenericStashFont.cs +++ b/MLEM.Extended/Font/GenericStashFont.cs @@ -43,4 +43,4 @@ namespace MLEM.Extended.Font { } } -} \ No newline at end of file +} diff --git a/MLEM.Extended/Tiled/IndividualTiledMapRenderer.cs b/MLEM.Extended/Tiled/IndividualTiledMapRenderer.cs index 0674f5a..297576f 100644 --- a/MLEM.Extended/Tiled/IndividualTiledMapRenderer.cs +++ b/MLEM.Extended/Tiled/IndividualTiledMapRenderer.cs @@ -257,4 +257,4 @@ namespace MLEM.Extended.Tiled { } } -} \ No newline at end of file +} diff --git a/MLEM.Extended/Tiled/LayerPosition.cs b/MLEM.Extended/Tiled/LayerPosition.cs index 3fb7b89..243d7bc 100644 --- a/MLEM.Extended/Tiled/LayerPosition.cs +++ b/MLEM.Extended/Tiled/LayerPosition.cs @@ -128,4 +128,4 @@ namespace MLEM.Extended.Tiled { } } -} \ No newline at end of file +} diff --git a/MLEM.Extended/Tiled/LayerPositionF.cs b/MLEM.Extended/Tiled/LayerPositionF.cs index 80a3d3f..f689f40 100644 --- a/MLEM.Extended/Tiled/LayerPositionF.cs +++ b/MLEM.Extended/Tiled/LayerPositionF.cs @@ -129,4 +129,4 @@ namespace MLEM.Extended.Tiled { } } -} \ No newline at end of file +} diff --git a/MLEM.Extended/Tiled/TiledExtensions.cs b/MLEM.Extended/Tiled/TiledExtensions.cs index 3528fea..b933636 100644 --- a/MLEM.Extended/Tiled/TiledExtensions.cs +++ b/MLEM.Extended/Tiled/TiledExtensions.cs @@ -360,4 +360,4 @@ namespace MLEM.Extended.Tiled { } } -} \ No newline at end of file +} diff --git a/MLEM.Extended/Tiled/TiledMapCollisions.cs b/MLEM.Extended/Tiled/TiledMapCollisions.cs index 10a9d1c..389265c 100644 --- a/MLEM.Extended/Tiled/TiledMapCollisions.cs +++ b/MLEM.Extended/Tiled/TiledMapCollisions.cs @@ -204,4 +204,4 @@ namespace MLEM.Extended.Tiled { } } -} \ No newline at end of file +} diff --git a/MLEM.Startup/CoroutineEvents.cs b/MLEM.Startup/CoroutineEvents.cs index cc75412..6cca960 100644 --- a/MLEM.Startup/CoroutineEvents.cs +++ b/MLEM.Startup/CoroutineEvents.cs @@ -24,4 +24,4 @@ namespace MLEM.Startup { public static readonly Event Draw = new Event(); } -} \ No newline at end of file +} diff --git a/MLEM.Startup/MlemGame.cs b/MLEM.Startup/MlemGame.cs index 778e5f3..36a820f 100644 --- a/MLEM.Startup/MlemGame.cs +++ b/MLEM.Startup/MlemGame.cs @@ -177,4 +177,4 @@ namespace MLEM.Startup { public delegate void TimeCallback(MlemGame game, GameTime time); } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Anchor.cs b/MLEM.Ui/Anchor.cs index e07ed5f..a984357 100644 --- a/MLEM.Ui/Anchor.cs +++ b/MLEM.Ui/Anchor.cs @@ -71,4 +71,4 @@ namespace MLEM.Ui { AutoInlineIgnoreOverflow } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/Button.cs b/MLEM.Ui/Elements/Button.cs index 226426b..5293b2d 100644 --- a/MLEM.Ui/Elements/Button.cs +++ b/MLEM.Ui/Elements/Button.cs @@ -118,4 +118,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/Checkbox.cs b/MLEM.Ui/Elements/Checkbox.cs index e2854c7..11452b8 100644 --- a/MLEM.Ui/Elements/Checkbox.cs +++ b/MLEM.Ui/Elements/Checkbox.cs @@ -147,4 +147,4 @@ namespace MLEM.Ui.Elements { public delegate void CheckStateChange(Checkbox box, bool checced); } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/Dropdown.cs b/MLEM.Ui/Elements/Dropdown.cs index 3825c00..636bf35 100644 --- a/MLEM.Ui/Elements/Dropdown.cs +++ b/MLEM.Ui/Elements/Dropdown.cs @@ -105,4 +105,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/Element.cs b/MLEM.Ui/Elements/Element.cs index 6ea1ad0..2e9efd0 100644 --- a/MLEM.Ui/Elements/Element.cs +++ b/MLEM.Ui/Elements/Element.cs @@ -1214,4 +1214,4 @@ namespace MLEM.Ui.Elements { public delegate void BeginDelegate(Element element, GameTime time, SpriteBatch batch, float alpha, BlendState blendState, SamplerState samplerState, DepthStencilState depthStencilState, Effect effect, Matrix matrix); } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/ElementHelper.cs b/MLEM.Ui/Elements/ElementHelper.cs index b9f86ea..e919beb 100644 --- a/MLEM.Ui/Elements/ElementHelper.cs +++ b/MLEM.Ui/Elements/ElementHelper.cs @@ -215,4 +215,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/Group.cs b/MLEM.Ui/Elements/Group.cs index 0e31ea2..de6f1a9 100644 --- a/MLEM.Ui/Elements/Group.cs +++ b/MLEM.Ui/Elements/Group.cs @@ -28,4 +28,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/Image.cs b/MLEM.Ui/Elements/Image.cs index 23ca2e9..67d5484 100644 --- a/MLEM.Ui/Elements/Image.cs +++ b/MLEM.Ui/Elements/Image.cs @@ -127,4 +127,4 @@ namespace MLEM.Ui.Elements { public delegate TextureRegion TextureCallback(Image image); } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/Panel.cs b/MLEM.Ui/Elements/Panel.cs index 0f44685..75cb704 100644 --- a/MLEM.Ui/Elements/Panel.cs +++ b/MLEM.Ui/Elements/Panel.cs @@ -311,4 +311,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/Paragraph.cs b/MLEM.Ui/Elements/Paragraph.cs index 34164cc..86c9def 100644 --- a/MLEM.Ui/Elements/Paragraph.cs +++ b/MLEM.Ui/Elements/Paragraph.cs @@ -284,4 +284,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/ProgressBar.cs b/MLEM.Ui/Elements/ProgressBar.cs index e8e1e38..7a38637 100644 --- a/MLEM.Ui/Elements/ProgressBar.cs +++ b/MLEM.Ui/Elements/ProgressBar.cs @@ -121,4 +121,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/RadioButton.cs b/MLEM.Ui/Elements/RadioButton.cs index f685bd9..1f72524 100644 --- a/MLEM.Ui/Elements/RadioButton.cs +++ b/MLEM.Ui/Elements/RadioButton.cs @@ -46,4 +46,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/ScrollBar.cs b/MLEM.Ui/Elements/ScrollBar.cs index f4801bd..4af3790 100644 --- a/MLEM.Ui/Elements/ScrollBar.cs +++ b/MLEM.Ui/Elements/ScrollBar.cs @@ -232,4 +232,4 @@ namespace MLEM.Ui.Elements { public delegate void ValueChanged(Element element, float value); } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/Slider.cs b/MLEM.Ui/Elements/Slider.cs index 7231e4e..c6b1972 100644 --- a/MLEM.Ui/Elements/Slider.cs +++ b/MLEM.Ui/Elements/Slider.cs @@ -39,4 +39,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/SpriteAnimationImage.cs b/MLEM.Ui/Elements/SpriteAnimationImage.cs index 486faa6..3796df2 100644 --- a/MLEM.Ui/Elements/SpriteAnimationImage.cs +++ b/MLEM.Ui/Elements/SpriteAnimationImage.cs @@ -42,4 +42,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/SquishingGroup.cs b/MLEM.Ui/Elements/SquishingGroup.cs index efd21ef..cb48f07 100644 --- a/MLEM.Ui/Elements/SquishingGroup.cs +++ b/MLEM.Ui/Elements/SquishingGroup.cs @@ -74,4 +74,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/TextField.cs b/MLEM.Ui/Elements/TextField.cs index 5df5598..325e013 100644 --- a/MLEM.Ui/Elements/TextField.cs +++ b/MLEM.Ui/Elements/TextField.cs @@ -570,4 +570,4 @@ namespace MLEM.Ui.Elements { public delegate bool Rule(TextField field, string textToAdd); } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/Tooltip.cs b/MLEM.Ui/Elements/Tooltip.cs index 62ac0b9..91670af 100644 --- a/MLEM.Ui/Elements/Tooltip.cs +++ b/MLEM.Ui/Elements/Tooltip.cs @@ -310,4 +310,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Elements/VerticalSpace.cs b/MLEM.Ui/Elements/VerticalSpace.cs index 70828ba..ffefc9e 100644 --- a/MLEM.Ui/Elements/VerticalSpace.cs +++ b/MLEM.Ui/Elements/VerticalSpace.cs @@ -16,4 +16,4 @@ namespace MLEM.Ui.Elements { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Parsers/UiMarkdownParser.cs b/MLEM.Ui/Parsers/UiMarkdownParser.cs index da9fecd..69ee617 100644 --- a/MLEM.Ui/Parsers/UiMarkdownParser.cs +++ b/MLEM.Ui/Parsers/UiMarkdownParser.cs @@ -290,4 +290,4 @@ namespace MLEM.Ui.Parsers { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Style/StyleProp.cs b/MLEM.Ui/Style/StyleProp.cs index 3458e50..0767959 100644 --- a/MLEM.Ui/Style/StyleProp.cs +++ b/MLEM.Ui/Style/StyleProp.cs @@ -144,4 +144,4 @@ namespace MLEM.Ui.Style { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Style/UiStyle.cs b/MLEM.Ui/Style/UiStyle.cs index 5c4491b..66655a0 100644 --- a/MLEM.Ui/Style/UiStyle.cs +++ b/MLEM.Ui/Style/UiStyle.cs @@ -223,4 +223,4 @@ namespace MLEM.Ui.Style { public Dictionary AdditionalFonts = new Dictionary(); } -} \ No newline at end of file +} diff --git a/MLEM.Ui/Style/UntexturedStyle.cs b/MLEM.Ui/Style/UntexturedStyle.cs index e9008ab..50a1c5c 100644 --- a/MLEM.Ui/Style/UntexturedStyle.cs +++ b/MLEM.Ui/Style/UntexturedStyle.cs @@ -29,4 +29,4 @@ namespace MLEM.Ui.Style { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/UiControls.cs b/MLEM.Ui/UiControls.cs index 7b8195f..6827ce5 100644 --- a/MLEM.Ui/UiControls.cs +++ b/MLEM.Ui/UiControls.cs @@ -443,4 +443,4 @@ namespace MLEM.Ui { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/UiMetrics.cs b/MLEM.Ui/UiMetrics.cs index 5ecb323..d06b1f3 100644 --- a/MLEM.Ui/UiMetrics.cs +++ b/MLEM.Ui/UiMetrics.cs @@ -104,4 +104,4 @@ namespace MLEM.Ui { } } -} \ No newline at end of file +} diff --git a/MLEM.Ui/UiSystem.cs b/MLEM.Ui/UiSystem.cs index da46119..bc5b2d3 100644 --- a/MLEM.Ui/UiSystem.cs +++ b/MLEM.Ui/UiSystem.cs @@ -620,4 +620,4 @@ namespace MLEM.Ui { } } -} \ No newline at end of file +} diff --git a/MLEM/Animations/SpriteAnimation.cs b/MLEM/Animations/SpriteAnimation.cs index 8fdfead..06b941d 100644 --- a/MLEM/Animations/SpriteAnimation.cs +++ b/MLEM/Animations/SpriteAnimation.cs @@ -197,4 +197,4 @@ namespace MLEM.Animations { } } -} \ No newline at end of file +} diff --git a/MLEM/Animations/SpriteAnimationGroup.cs b/MLEM/Animations/SpriteAnimationGroup.cs index 2551fec..0bacf27 100644 --- a/MLEM/Animations/SpriteAnimationGroup.cs +++ b/MLEM/Animations/SpriteAnimationGroup.cs @@ -137,4 +137,4 @@ namespace MLEM.Animations { } } -} \ No newline at end of file +} diff --git a/MLEM/Cameras/Camera.cs b/MLEM/Cameras/Camera.cs index 3485e68..d8f7e0e 100644 --- a/MLEM/Cameras/Camera.cs +++ b/MLEM/Cameras/Camera.cs @@ -180,4 +180,4 @@ namespace MLEM.Cameras { } } -} \ No newline at end of file +} diff --git a/MLEM/Extensions/CharExtensions.cs b/MLEM/Extensions/CharExtensions.cs index f6992d5..137aaf3 100644 --- a/MLEM/Extensions/CharExtensions.cs +++ b/MLEM/Extensions/CharExtensions.cs @@ -23,4 +23,4 @@ namespace MLEM.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM/Extensions/CollectionExtensions.cs b/MLEM/Extensions/CollectionExtensions.cs index 0c2a719..db1f238 100644 --- a/MLEM/Extensions/CollectionExtensions.cs +++ b/MLEM/Extensions/CollectionExtensions.cs @@ -52,4 +52,4 @@ namespace MLEM.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM/Extensions/ColorExtensions.cs b/MLEM/Extensions/ColorExtensions.cs index 1384de7..05b66f2 100644 --- a/MLEM/Extensions/ColorExtensions.cs +++ b/MLEM/Extensions/ColorExtensions.cs @@ -77,4 +77,4 @@ namespace MLEM.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM/Extensions/GraphicsExtensions.cs b/MLEM/Extensions/GraphicsExtensions.cs index 2c94d0f..d6657a6 100644 --- a/MLEM/Extensions/GraphicsExtensions.cs +++ b/MLEM/Extensions/GraphicsExtensions.cs @@ -104,4 +104,4 @@ namespace MLEM.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM/Extensions/NumberExtensions.cs b/MLEM/Extensions/NumberExtensions.cs index da27da2..61b12a9 100644 --- a/MLEM/Extensions/NumberExtensions.cs +++ b/MLEM/Extensions/NumberExtensions.cs @@ -289,4 +289,4 @@ namespace MLEM.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM/Extensions/RandomExtensions.cs b/MLEM/Extensions/RandomExtensions.cs index 03b4c8f..59752aa 100644 --- a/MLEM/Extensions/RandomExtensions.cs +++ b/MLEM/Extensions/RandomExtensions.cs @@ -55,4 +55,4 @@ namespace MLEM.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM/Extensions/SoundExtensions.cs b/MLEM/Extensions/SoundExtensions.cs index 88d14f2..9cccf06 100644 --- a/MLEM/Extensions/SoundExtensions.cs +++ b/MLEM/Extensions/SoundExtensions.cs @@ -25,4 +25,4 @@ namespace MLEM.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM/Extensions/SpriteBatchExtensions.cs b/MLEM/Extensions/SpriteBatchExtensions.cs index ac50c80..907692c 100644 --- a/MLEM/Extensions/SpriteBatchExtensions.cs +++ b/MLEM/Extensions/SpriteBatchExtensions.cs @@ -173,4 +173,4 @@ namespace MLEM.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM/Extensions/TextureExtensions.cs b/MLEM/Extensions/TextureExtensions.cs index 016c3ef..9826bbb 100644 --- a/MLEM/Extensions/TextureExtensions.cs +++ b/MLEM/Extensions/TextureExtensions.cs @@ -112,4 +112,4 @@ namespace MLEM.Extensions { } } -} \ No newline at end of file +} diff --git a/MLEM/Font/GenericFont.cs b/MLEM/Font/GenericFont.cs index 42dc2e3..dc8b370 100644 --- a/MLEM/Font/GenericFont.cs +++ b/MLEM/Font/GenericFont.cs @@ -370,4 +370,4 @@ namespace MLEM.Font { } } -} \ No newline at end of file +} diff --git a/MLEM/Font/GenericSpriteFont.cs b/MLEM/Font/GenericSpriteFont.cs index a4db544..d350028 100644 --- a/MLEM/Font/GenericSpriteFont.cs +++ b/MLEM/Font/GenericSpriteFont.cs @@ -55,4 +55,4 @@ namespace MLEM.Font { } } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/Codes/AnimatedCode.cs b/MLEM/Formatting/Codes/AnimatedCode.cs index ab7b777..b262aa4 100644 --- a/MLEM/Formatting/Codes/AnimatedCode.cs +++ b/MLEM/Formatting/Codes/AnimatedCode.cs @@ -13,4 +13,4 @@ namespace MLEM.Formatting.Codes { } } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/Codes/Code.cs b/MLEM/Formatting/Codes/Code.cs index 2e12144..1ffdc05 100644 --- a/MLEM/Formatting/Codes/Code.cs +++ b/MLEM/Formatting/Codes/Code.cs @@ -90,4 +90,4 @@ namespace MLEM.Formatting.Codes { public delegate Code Constructor(TextFormatter formatter, Match match, Regex regex); } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/Codes/ColorCode.cs b/MLEM/Formatting/Codes/ColorCode.cs index 4f3a4b6..a990758 100644 --- a/MLEM/Formatting/Codes/ColorCode.cs +++ b/MLEM/Formatting/Codes/ColorCode.cs @@ -18,4 +18,4 @@ namespace MLEM.Formatting.Codes { } } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/Codes/FontCode.cs b/MLEM/Formatting/Codes/FontCode.cs index dc8d306..9db6ae2 100644 --- a/MLEM/Formatting/Codes/FontCode.cs +++ b/MLEM/Formatting/Codes/FontCode.cs @@ -24,4 +24,4 @@ namespace MLEM.Formatting.Codes { } } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/Codes/ImageCode.cs b/MLEM/Formatting/Codes/ImageCode.cs index 1024e85..79fd6be 100644 --- a/MLEM/Formatting/Codes/ImageCode.cs +++ b/MLEM/Formatting/Codes/ImageCode.cs @@ -65,4 +65,4 @@ namespace MLEM.Formatting.Codes { } } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/Codes/LinkCode.cs b/MLEM/Formatting/Codes/LinkCode.cs index c27f4e1..4e1a0b7 100644 --- a/MLEM/Formatting/Codes/LinkCode.cs +++ b/MLEM/Formatting/Codes/LinkCode.cs @@ -41,4 +41,4 @@ namespace MLEM.Formatting.Codes { } } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/Codes/ResetFormattingCode.cs b/MLEM/Formatting/Codes/ResetFormattingCode.cs index 966a4dd..761ebf6 100644 --- a/MLEM/Formatting/Codes/ResetFormattingCode.cs +++ b/MLEM/Formatting/Codes/ResetFormattingCode.cs @@ -13,4 +13,4 @@ namespace MLEM.Formatting.Codes { } } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/Codes/ShadowCode.cs b/MLEM/Formatting/Codes/ShadowCode.cs index aecdeff..86878ba 100644 --- a/MLEM/Formatting/Codes/ShadowCode.cs +++ b/MLEM/Formatting/Codes/ShadowCode.cs @@ -30,4 +30,4 @@ namespace MLEM.Formatting.Codes { } } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/Codes/UnderlineCode.cs b/MLEM/Formatting/Codes/UnderlineCode.cs index df14e48..9df532f 100644 --- a/MLEM/Formatting/Codes/UnderlineCode.cs +++ b/MLEM/Formatting/Codes/UnderlineCode.cs @@ -35,4 +35,4 @@ namespace MLEM.Formatting.Codes { } } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/Codes/WobblyCode.cs b/MLEM/Formatting/Codes/WobblyCode.cs index f2f34dd..8c0ffad 100644 --- a/MLEM/Formatting/Codes/WobblyCode.cs +++ b/MLEM/Formatting/Codes/WobblyCode.cs @@ -36,4 +36,4 @@ namespace MLEM.Formatting.Codes { } } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/TextAlignment.cs b/MLEM/Formatting/TextAlignment.cs index 3f7876a..19c40ab 100644 --- a/MLEM/Formatting/TextAlignment.cs +++ b/MLEM/Formatting/TextAlignment.cs @@ -19,4 +19,4 @@ namespace MLEM.Formatting { Right } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/TextFormatter.cs b/MLEM/Formatting/TextFormatter.cs index 1c41447..8fed25e 100644 --- a/MLEM/Formatting/TextFormatter.cs +++ b/MLEM/Formatting/TextFormatter.cs @@ -157,4 +157,4 @@ namespace MLEM.Formatting { public delegate string Macro(TextFormatter formatter, Match match, Regex regex); } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/Token.cs b/MLEM/Formatting/Token.cs index ca18f00..f468088 100644 --- a/MLEM/Formatting/Token.cs +++ b/MLEM/Formatting/Token.cs @@ -132,4 +132,4 @@ namespace MLEM.Formatting { } } -} \ No newline at end of file +} diff --git a/MLEM/Formatting/TokenizedString.cs b/MLEM/Formatting/TokenizedString.cs index 06b0305..abb6ee6 100644 --- a/MLEM/Formatting/TokenizedString.cs +++ b/MLEM/Formatting/TokenizedString.cs @@ -252,4 +252,4 @@ namespace MLEM.Formatting { } } -} \ No newline at end of file +} diff --git a/MLEM/Graphics/AutoTiling.cs b/MLEM/Graphics/AutoTiling.cs index 16cdd4f..676828a 100644 --- a/MLEM/Graphics/AutoTiling.cs +++ b/MLEM/Graphics/AutoTiling.cs @@ -172,4 +172,4 @@ namespace MLEM.Graphics { public delegate bool ConnectsTo(int xOff, int yOff); } -} \ No newline at end of file +} diff --git a/MLEM/Graphics/SpriteBatchContext.cs b/MLEM/Graphics/SpriteBatchContext.cs index ad03034..0e1734e 100644 --- a/MLEM/Graphics/SpriteBatchContext.cs +++ b/MLEM/Graphics/SpriteBatchContext.cs @@ -97,4 +97,4 @@ namespace MLEM.Graphics { } } -} \ No newline at end of file +} diff --git a/MLEM/Graphics/StaticSpriteBatch.cs b/MLEM/Graphics/StaticSpriteBatch.cs index bc25725..e27d00c 100644 --- a/MLEM/Graphics/StaticSpriteBatch.cs +++ b/MLEM/Graphics/StaticSpriteBatch.cs @@ -464,4 +464,4 @@ namespace MLEM.Graphics { } } -} \ No newline at end of file +} diff --git a/MLEM/Input/GamepadExtensions.cs b/MLEM/Input/GamepadExtensions.cs index c746d12..99e967f 100644 --- a/MLEM/Input/GamepadExtensions.cs +++ b/MLEM/Input/GamepadExtensions.cs @@ -42,4 +42,4 @@ namespace MLEM.Input { } } -} \ No newline at end of file +} diff --git a/MLEM/Input/GenericInput.cs b/MLEM/Input/GenericInput.cs index 00ef235..f40e781 100644 --- a/MLEM/Input/GenericInput.cs +++ b/MLEM/Input/GenericInput.cs @@ -211,4 +211,4 @@ namespace MLEM.Input { } } -} \ No newline at end of file +} diff --git a/MLEM/Input/InputHandler.cs b/MLEM/Input/InputHandler.cs index 370395c..d063f34 100644 --- a/MLEM/Input/InputHandler.cs +++ b/MLEM/Input/InputHandler.cs @@ -836,4 +836,4 @@ namespace MLEM.Input { } } -} \ No newline at end of file +} diff --git a/MLEM/Input/Keybind.cs b/MLEM/Input/Keybind.cs index 31d5968..e4f0b8c 100644 --- a/MLEM/Input/Keybind.cs +++ b/MLEM/Input/Keybind.cs @@ -217,7 +217,7 @@ namespace MLEM.Input { /// Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. /// An object to compare with this instance. /// A value that indicates the relative order of the objects being compared. The return value has these meanings: - /// + /// /// Value Meaning Less than zero This instance precedes in the sort order. Zero This instance occurs in the same position in the sort order as . Greater than zero This instance follows in the sort order. public int CompareTo(Keybind other) { return this.combinations.Sum(c => other.combinations.Sum(c.CompareTo)); @@ -228,7 +228,7 @@ namespace MLEM.Input { /// /// is not the same type as this instance. /// A value that indicates the relative order of the objects being compared. The return value has these meanings: - /// + /// /// Value Meaning Less than zero This instance precedes in the sort order. Zero This instance occurs in the same position in the sort order as . Greater than zero This instance follows in the sort order. public int CompareTo(object obj) { if (object.ReferenceEquals(null, obj)) @@ -355,7 +355,7 @@ namespace MLEM.Input { /// Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. /// An object to compare with this instance. /// A value that indicates the relative order of the objects being compared. The return value has these meanings: - /// + /// /// Value Meaning Less than zero This instance precedes in the sort order. Zero This instance occurs in the same position in the sort order as . Greater than zero This instance follows in the sort order. public int CompareTo(Combination other) { return this.Modifiers.Length.CompareTo(other.Modifiers.Length); @@ -366,7 +366,7 @@ namespace MLEM.Input { /// /// is not the same type as this instance. /// A value that indicates the relative order of the objects being compared. The return value has these meanings: - /// + /// /// Value Meaning Less than zero This instance precedes in the sort order. Zero This instance occurs in the same position in the sort order as . Greater than zero This instance follows in the sort order. public int CompareTo(object obj) { if (object.ReferenceEquals(null, obj)) @@ -387,4 +387,4 @@ namespace MLEM.Input { } } -} \ No newline at end of file +} diff --git a/MLEM/Input/KeysExtensions.cs b/MLEM/Input/KeysExtensions.cs index cf5a266..8577835 100644 --- a/MLEM/Input/KeysExtensions.cs +++ b/MLEM/Input/KeysExtensions.cs @@ -86,4 +86,4 @@ namespace MLEM.Input { Alt } -} \ No newline at end of file +} diff --git a/MLEM/Input/MouseExtensions.cs b/MLEM/Input/MouseExtensions.cs index e312e61..f31b198 100644 --- a/MLEM/Input/MouseExtensions.cs +++ b/MLEM/Input/MouseExtensions.cs @@ -68,4 +68,4 @@ namespace MLEM.Input { Extra2 } -} \ No newline at end of file +} diff --git a/MLEM/Misc/Direction2.cs b/MLEM/Misc/Direction2.cs index 4406366..f5f6aa6 100644 --- a/MLEM/Misc/Direction2.cs +++ b/MLEM/Misc/Direction2.cs @@ -260,4 +260,4 @@ namespace MLEM.Misc { } } -} \ No newline at end of file +} diff --git a/MLEM/Misc/Easings.cs b/MLEM/Misc/Easings.cs index a0317ce..a252c36 100644 --- a/MLEM/Misc/Easings.cs +++ b/MLEM/Misc/Easings.cs @@ -177,4 +177,4 @@ namespace MLEM.Misc { public delegate float Easing(float percentage); } -} \ No newline at end of file +} diff --git a/MLEM/Misc/EnumHelper.cs b/MLEM/Misc/EnumHelper.cs index 5d104be..b7a7337 100644 --- a/MLEM/Misc/EnumHelper.cs +++ b/MLEM/Misc/EnumHelper.cs @@ -28,4 +28,4 @@ namespace MLEM.Misc { } } -} \ No newline at end of file +} diff --git a/MLEM/Misc/GenericDataHolder.cs b/MLEM/Misc/GenericDataHolder.cs index 3adb1aa..14decf2 100644 --- a/MLEM/Misc/GenericDataHolder.cs +++ b/MLEM/Misc/GenericDataHolder.cs @@ -70,4 +70,4 @@ namespace MLEM.Misc { IReadOnlyCollection GetDataKeys(); } -} \ No newline at end of file +} diff --git a/MLEM/Misc/MlemPlatform.cs b/MLEM/Misc/MlemPlatform.cs index 26fab7a..f63de32 100644 --- a/MLEM/Misc/MlemPlatform.cs +++ b/MLEM/Misc/MlemPlatform.cs @@ -179,4 +179,4 @@ namespace MLEM.Misc { } } -} \ No newline at end of file +} diff --git a/MLEM/Misc/Padding.cs b/MLEM/Misc/Padding.cs index c71103e..92f6aaf 100644 --- a/MLEM/Misc/Padding.cs +++ b/MLEM/Misc/Padding.cs @@ -142,4 +142,4 @@ namespace MLEM.Misc { } } -} \ No newline at end of file +} diff --git a/MLEM/Misc/RectangleF.cs b/MLEM/Misc/RectangleF.cs index c10bad2..6a3145b 100644 --- a/MLEM/Misc/RectangleF.cs +++ b/MLEM/Misc/RectangleF.cs @@ -287,4 +287,4 @@ namespace MLEM.Misc { } } -} \ No newline at end of file +} diff --git a/MLEM/Pathfinding/AStar.cs b/MLEM/Pathfinding/AStar.cs index 24f21cf..92c0a9f 100644 --- a/MLEM/Pathfinding/AStar.cs +++ b/MLEM/Pathfinding/AStar.cs @@ -236,4 +236,4 @@ namespace MLEM.Pathfinding { } } -} \ No newline at end of file +} diff --git a/MLEM/Pathfinding/AStar2.cs b/MLEM/Pathfinding/AStar2.cs index d3fc0f4..06008f6 100644 --- a/MLEM/Pathfinding/AStar2.cs +++ b/MLEM/Pathfinding/AStar2.cs @@ -27,4 +27,4 @@ namespace MLEM.Pathfinding { } } -} \ No newline at end of file +} diff --git a/MLEM/Pathfinding/AStar3.cs b/MLEM/Pathfinding/AStar3.cs index 8314796..ef14939 100644 --- a/MLEM/Pathfinding/AStar3.cs +++ b/MLEM/Pathfinding/AStar3.cs @@ -48,4 +48,4 @@ namespace MLEM.Pathfinding { } } -} \ No newline at end of file +} diff --git a/MLEM/Sound/SoundEffectInfo.cs b/MLEM/Sound/SoundEffectInfo.cs index 510f589..46f3484 100644 --- a/MLEM/Sound/SoundEffectInfo.cs +++ b/MLEM/Sound/SoundEffectInfo.cs @@ -78,4 +78,4 @@ namespace MLEM.Sound { } } -} \ No newline at end of file +} diff --git a/MLEM/Sound/SoundEffectInstanceHandler.cs b/MLEM/Sound/SoundEffectInstanceHandler.cs index 0e03837..bfbe61b 100644 --- a/MLEM/Sound/SoundEffectInstanceHandler.cs +++ b/MLEM/Sound/SoundEffectInstanceHandler.cs @@ -169,4 +169,4 @@ namespace MLEM.Sound { } } -} \ No newline at end of file +} diff --git a/MLEM/Textures/NinePatch.cs b/MLEM/Textures/NinePatch.cs index aadfda9..30078e7 100644 --- a/MLEM/Textures/NinePatch.cs +++ b/MLEM/Textures/NinePatch.cs @@ -183,4 +183,4 @@ namespace MLEM.Textures { } } -} \ No newline at end of file +} diff --git a/MLEM/Textures/TextureRegion.cs b/MLEM/Textures/TextureRegion.cs index f87e8df..6ed56d9 100644 --- a/MLEM/Textures/TextureRegion.cs +++ b/MLEM/Textures/TextureRegion.cs @@ -206,4 +206,4 @@ namespace MLEM.Textures { } } -} \ No newline at end of file +} diff --git a/MLEM/Textures/UniformTextureAtlas.cs b/MLEM/Textures/UniformTextureAtlas.cs index e4a1044..01d414f 100644 --- a/MLEM/Textures/UniformTextureAtlas.cs +++ b/MLEM/Textures/UniformTextureAtlas.cs @@ -95,4 +95,4 @@ namespace MLEM.Textures { } } -} \ No newline at end of file +} diff --git a/Sandbox/Content/Tiled/Tileset.tsx b/Sandbox/Content/Tiled/Tileset.tsx index ea29feb..8e6435e 100644 --- a/Sandbox/Content/Tiled/Tileset.tsx +++ b/Sandbox/Content/Tiled/Tileset.tsx @@ -1,123 +1,123 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Sandbox/GameImpl.cs b/Sandbox/GameImpl.cs index aaa1ab0..bc82ecf 100644 --- a/Sandbox/GameImpl.cs +++ b/Sandbox/GameImpl.cs @@ -400,4 +400,4 @@ namespace Sandbox { } } -} \ No newline at end of file +} diff --git a/Sandbox/Program.cs b/Sandbox/Program.cs index 70cd32a..c40294f 100644 --- a/Sandbox/Program.cs +++ b/Sandbox/Program.cs @@ -11,4 +11,4 @@ namespace Sandbox { } } -} \ No newline at end of file +} diff --git a/Tests/CameraTests.cs b/Tests/CameraTests.cs index faa319d..4d63bca 100644 --- a/Tests/CameraTests.cs +++ b/Tests/CameraTests.cs @@ -27,4 +27,4 @@ namespace Tests { } } -} \ No newline at end of file +} diff --git a/Tests/CollectionTests.cs b/Tests/CollectionTests.cs index b7e69c6..4b19198 100644 --- a/Tests/CollectionTests.cs +++ b/Tests/CollectionTests.cs @@ -28,4 +28,4 @@ namespace Tests { } } -} \ No newline at end of file +} diff --git a/Tests/DataTests.cs b/Tests/DataTests.cs index 1bac8cc..e8361c2 100644 --- a/Tests/DataTests.cs +++ b/Tests/DataTests.cs @@ -118,4 +118,4 @@ namespace Tests { } } -} \ No newline at end of file +} diff --git a/Tests/DataTextureAtlasTests.cs b/Tests/DataTextureAtlasTests.cs index 62de0b2..586949e 100644 --- a/Tests/DataTextureAtlasTests.cs +++ b/Tests/DataTextureAtlasTests.cs @@ -27,4 +27,4 @@ namespace Tests { } } -} \ No newline at end of file +} diff --git a/Tests/DirectionTests.cs b/Tests/DirectionTests.cs index bed22bf..d5e5fce 100644 --- a/Tests/DirectionTests.cs +++ b/Tests/DirectionTests.cs @@ -61,4 +61,4 @@ namespace Tests { } } -} \ No newline at end of file +} diff --git a/Tests/FontTests.cs b/Tests/FontTests.cs index 674e32c..92340d4 100644 --- a/Tests/FontTests.cs +++ b/Tests/FontTests.cs @@ -155,4 +155,4 @@ namespace Tests { } } -} \ No newline at end of file +} diff --git a/Tests/KeybindTests.cs b/Tests/KeybindTests.cs index 305940a..212685c 100644 --- a/Tests/KeybindTests.cs +++ b/Tests/KeybindTests.cs @@ -36,4 +36,4 @@ namespace Tests { } } -} \ No newline at end of file +} diff --git a/Tests/NumberTests.cs b/Tests/NumberTests.cs index 184a645..cbdc8b2 100644 --- a/Tests/NumberTests.cs +++ b/Tests/NumberTests.cs @@ -68,4 +68,4 @@ namespace Tests { } } -} \ No newline at end of file +} diff --git a/Tests/PathfindingTests.cs b/Tests/PathfindingTests.cs index 05b8ed5..053d09f 100644 --- a/Tests/PathfindingTests.cs +++ b/Tests/PathfindingTests.cs @@ -71,4 +71,4 @@ namespace Tests { } } -} \ No newline at end of file +} diff --git a/Tests/TestGame.cs b/Tests/TestGame.cs index 487febf..d0841fd 100644 --- a/Tests/TestGame.cs +++ b/Tests/TestGame.cs @@ -23,4 +23,4 @@ namespace Tests { } } -} \ No newline at end of file +} diff --git a/Tests/TexturePackerTests.cs b/Tests/TexturePackerTests.cs index 7a7683d..1779cf7 100644 --- a/Tests/TexturePackerTests.cs +++ b/Tests/TexturePackerTests.cs @@ -83,4 +83,4 @@ namespace Tests { private static void StubResult(TextureRegion region) {} } -} \ No newline at end of file +} diff --git a/Tests/UiTests.cs b/Tests/UiTests.cs index 528bb71..6bfcaac 100644 --- a/Tests/UiTests.cs +++ b/Tests/UiTests.cs @@ -122,4 +122,4 @@ namespace Tests { } } -} \ No newline at end of file +}