namespaces fix

This commit is contained in:
2015-12-20 18:06:11 +06:00
parent 6574c1c810
commit 2c21599d61
2 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
using UnityEngine;
using System.Collections;
namespace IsoTools { namespace Examples {
namespace IsoTools.Examples {
public class CircleFly : MonoBehaviour {
public float flyRadius = 150.0f;
public float flySpeed = 1.0f;
@@ -22,4 +22,4 @@ namespace IsoTools { namespace Examples {
_start_pos.z);
}
}
}} // namespace IsoTools::Examples
} // namespace IsoTools.Examples

View File

@@ -1,7 +1,7 @@
using UnityEngine;
using System.Collections;
namespace IsoTools { namespace Examples {
namespace IsoTools.Examples {
public class IsoEchoListener : MonoBehaviour {
void OnIsoTriggerEnter(IsoCollider iso_collider) {
Debug.LogFormat(
@@ -27,4 +27,4 @@ namespace IsoTools { namespace Examples {
gameObject.name, iso_collision.gameObject.name);
}
}
}} // namespace IsoTools::Examples
} // namespace IsoTools.Examples