|
@@ -0,0 +1,12 @@
|
|
|
|
+using System.Collections;
|
|
|
|
+using System.Collections.Generic;
|
|
|
|
+using UnityEngine;
|
|
|
|
+
|
|
|
|
+namespace KairoEngine.Core
|
|
|
|
+{
|
|
|
|
+ public interface IMapDataGenerator
|
|
|
|
+ {
|
|
|
|
+ public float SamplePoint(float x, float y);
|
|
|
|
+ public uint SamplePointColor(float x, float y, float value);
|
|
|
|
+ }
|
|
|
|
+}
|