Browse Source
Merge pull request #43 from Blucky87/master
Change UnityEngine namespace requirements
tags/2.8
Sebastiano Mandalà
GitHub
5 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
2 deletions
-
Svelto.ECS/Common/Components/ECSRect.cs
-
Svelto.ECS/Extensions/Unity/GenericEntityDescriptorHolder.cs
|
|
@@ -1,3 +1,4 @@ |
|
|
|
#if UNITY_5 || UNITY_5_3_OR_NEWER |
|
|
|
using UnityEngine; |
|
|
|
|
|
|
|
namespace Svelto.ECS.Components |
|
|
@@ -14,4 +15,5 @@ namespace Svelto.ECS.Components |
|
|
|
height = imageUvRect.height; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
#endif |
|
|
@@ -1,6 +1,6 @@ |
|
|
|
#if UNITY_5 || UNITY_5_3_OR_NEWER |
|
|
|
using UnityEngine; |
|
|
|
|
|
|
|
#if UNITY_5 || UNITY_5_3_OR_NEWER |
|
|
|
namespace Svelto.ECS.Unity |
|
|
|
{ |
|
|
|
public class GenericEntityDescriptorHolder<T>: |
|
|
|