2021-07-22 04:30:03 +03:00
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
|
|
|
#if UNITY_EDITOR
|
2021-08-04 20:04:54 +03:00
|
|
|
[assembly: InternalsVisibleTo("Unity.Netcode.Editor")]
|
2023-01-18 17:47:34 +03:00
|
|
|
[assembly: InternalsVisibleTo("Unity.Netcode.Editor.CodeGen")]
|
|
|
|
#endif // UNITY_EDITOR
|
2023-01-12 23:45:54 +03:00
|
|
|
|
|
|
|
#if UNITY_INCLUDE_TESTS
|
2023-01-18 17:47:34 +03:00
|
|
|
[assembly: InternalsVisibleTo("Unity.Netcode.RuntimeTests")]
|
|
|
|
[assembly: InternalsVisibleTo("TestProject.RuntimeTests")]
|
2023-01-12 23:45:54 +03:00
|
|
|
#if UNITY_EDITOR
|
|
|
|
[assembly: InternalsVisibleTo("Unity.Netcode.EditorTests")]
|
2021-07-22 04:30:03 +03:00
|
|
|
[assembly: InternalsVisibleTo("TestProject.EditorTests")]
|
2023-01-18 17:47:34 +03:00
|
|
|
#endif // UNITY_EDITOR
|
|
|
|
#endif // UNITY_INCLUDE_TESTS
|