(18c3d51e4) Display current year in the copyright notices

This commit is contained in:
Joonas Rikkonen
2019-05-06 11:25:29 +03:00
parent 8d96452e0b
commit 0bd876e17d
4 changed files with 247 additions and 34 deletions
@@ -751,11 +751,11 @@ namespace Barotrauma
spriteBatch.End();
}
readonly string[] legalCrap = new string[]
readonly string[] legalCrap = new string[]
{
"Privacy policy: privacypolicy.daedalic.com",
2019 Undertow Games & FakeFish. All rights reserved.",
2019 Daedalic Entertainment GmbH. The Daedalic logo is a trademark of Daedalic Entertainment GmbH, Germany. All rights reserved."
" + DateTime.Now.Year + " Undertow Games & FakeFish. All rights reserved.",
" + DateTime.Now.Year + " Daedalic Entertainment GmbH. The Daedalic logo is a trademark of Daedalic Entertainment GmbH, Germany. All rights reserved."
};
public override void Draw(double deltaTime, GraphicsDevice graphics, SpriteBatch spriteBatch)