@@ -29,6 +29,7 @@ This contains the base code that other packages will use. It includes code for t
- Added Tag Attribute
- Added Layer Attribute
- Added Vector3 Generic Event
+- Added random seed to IMapDataGenerator
##### v0.2.6
- Added the Cronometer utility
@@ -6,6 +6,7 @@ namespace KairoEngine.Core
{
public interface IMapDataGenerator
+ public void SetSeed(int newSeed);
public float SamplePoint(float x, float y);
public uint SamplePointColor(float x, float y, float value);
}