portals and dash. Also a bit of terrain building and level design

This commit is contained in:
2022-03-13 00:26:35 +02:00
parent 813cd0c451
commit e82799c36a
6242 changed files with 2160679 additions and 188245 deletions

View File

@@ -0,0 +1,19 @@
using System.Collections.Generic;
using UnityEditor;
namespace RotaryHeart.Lib.SerializableDictionary
{
[InitializeOnLoad]
public class Definer
{
static Definer()
{
List<string> defines = new List<string>(1)
{
"RH_SerializedDictionary"
};
RotaryHeart.Lib.Definer.ApplyDefines(defines);
}
}
}