1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-12-25 19:46:50 -05:00

Normalize line endings (#49)

* Introduce end of line normalization
* Normalize line endings
This commit is contained in:
wtfblub 2018-12-13 00:13:34 +01:00 committed by Tim Sarbin
parent a79040cc20
commit 21666ed4f4
22 changed files with 1029 additions and 1025 deletions

5
.gitattributes vendored Normal file
View File

@ -0,0 +1,5 @@
# Auto detect text files and perform LF normalization
# http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
* text=auto
*.cs diff=csharp

View File

@ -12,7 +12,6 @@ namespace OpenDiablo2.Common.Interfaces.Drawing
eHero Hero { get; set; }
PlayerEquipment Equipment { get; set; }
eMobMode MobMode { get; set; }
void Update(long ms);
void Render(int pixelOffsetX, int pixelOffsetY);
void ResetAnimationData();