Skip to content
This repository was archived by the owner on May 9, 2025. It is now read-only.

Commit aa93372

Browse files
Fixed some warnings
1 parent 38ce5ec commit aa93372

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Assets/SO Architecture/SOArchitectureBaseMonobehaviour.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@
66
/// </summary>
77
public abstract class SOArchitectureBaseMonobehaviour : MonoBehaviour
88
{
9+
910
#if UNITY_EDITOR
11+
#pragma warning disable 0414
1012
[SerializeField]
1113
private DeveloperDescription DeveloperDescription = new DeveloperDescription();
14+
#pragma warning restore
1215
#endif
1316
}

Assets/SO Architecture/SOArchitectureBaseObject.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
public abstract class SOArchitectureBaseObject : ScriptableObject
88
{
99
#if UNITY_EDITOR
10+
#pragma warning disable 0414
1011
[SerializeField]
1112
private DeveloperDescription DeveloperDescription = new DeveloperDescription();
13+
#pragma warning restore
1214
#endif
1315
}

0 commit comments

Comments
 (0)