mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-08 14:14:48 -04:00
- GameScn.cs now functions the same as GameScn.gd, even though the two use different techniques in changing the clothes, due to the nature of their respective languages. - Soundtrack works but not as intended. I think it's repeating the same song. - License headers have been brought back.
14 lines
No EOL
584 B
Text
14 lines
No EOL
584 B
Text
<#@ template debug="false" hostspecific="false" language="C#" #>
|
|
<#@ output extension=".cs" #>
|
|
<#
|
|
var now = DateTime.UtcNow;
|
|
var version = $"0.0.{now.Year % 100:D2}{now.Month:D2}.{now.Day:D2}{now.Hour:D2}";
|
|
#>
|
|
// Anthony Wilcox licenses this file to you under the GPL license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
// This code was generated by a tool. Any changes made manually will be lost
|
|
// the next time this code is regenerated.
|
|
using System.Reflection;
|
|
[assembly: AssemblyVersion("<#= version #>")]
|
|
[assembly: AssemblyFileVersion("<#= version #>")] |