Compare commits

...

2 Commits

Author SHA1 Message Date
540d6444a6 Merge branch 'main' of https://git.bibko.uk/Pasha/Pacore 2026-01-24 20:00:19 +00:00
d3c7505abf Moved shared into runtime 2026-01-24 20:00:17 +00:00
13 changed files with 16 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
using PashaBibko.Pacore.Shared.Attributes;
using PashaBibko.Pacore.Attributes;
using System.Reflection;
using UnityEditor;
using UnityEngine;

View File

@@ -1,4 +1,4 @@
using PashaBibko.Pacore.Shared.Attributes;
using PashaBibko.Pacore.Attributes;
using UnityEditor;
using UnityEngine;

View File

@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using PashaBibko.Pacore.Shared.Attributes;
using PashaBibko.Pacore.Attributes;
using UnityEditor;
using UnityEngine;
using Object = UnityEngine.Object;

View File

@@ -1,4 +1,4 @@
using PashaBibko.Pacore.Shared.Attributes;
using PashaBibko.Pacore.Attributes;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;

View File

@@ -1,7 +1,7 @@
using UnityEngine.Scripting;
using System;
namespace PashaBibko.Pacore.Shared.Attributes
namespace PashaBibko.Pacore.Attributes
{
[Preserve, AttributeUsage(AttributeTargets.Class)]
public class CreateInstanceOnStartAttribute : Attribute { }

View File

@@ -2,7 +2,7 @@
using UnityEngine;
using System;
namespace PashaBibko.Pacore.Shared.Attributes
namespace PashaBibko.Pacore.Attributes
{
[MeansImplicitUse, AttributeUsage(validOn: AttributeTargets.Field)]
public sealed class DetectInspectorChangesAttribute : PropertyAttribute

View File

@@ -1,7 +1,7 @@
using JetBrains.Annotations;
using System;
namespace PashaBibko.Pacore.Shared.Attributes
namespace PashaBibko.Pacore.Attributes
{
[MeansImplicitUse, AttributeUsage(AttributeTargets.Method)]
public class InspectorCallableAttribute : Attribute

View File

@@ -2,7 +2,7 @@ using JetBrains.Annotations;
using UnityEngine;
using System;
namespace PashaBibko.Pacore.Shared.Attributes
namespace PashaBibko.Pacore.Attributes
{
#if UNITY_EDITOR
[MeansImplicitUse, AttributeUsage(validOn: AttributeTargets.Field)]

View File

@@ -1,7 +1,7 @@
using System;
using UnityEngine;
using UnityEngine;
using System;
namespace PashaBibko.Pacore.Shared.Attributes
namespace PashaBibko.Pacore.Attributes
{
[AttributeUsage(AttributeTargets.Field)]
public class MonoScriptAttribute : PropertyAttribute

View File

@@ -5,7 +5,7 @@ using System.Linq;
using System;
using UnityEngine;
namespace PashaBibko.Pacore.Runtime
namespace PashaBibko.Pacore
{
public static class ClassAttributeCache
{

View File

@@ -1,11 +1,11 @@
using PashaBibko.Pacore.Shared.Attributes;
using PashaBibko.Pacore.Attributes;
using System.Collections.ObjectModel;
using UnityEngine;
using System;
using Object = UnityEngine.Object;
namespace PashaBibko.Pacore.Runtime
namespace PashaBibko.Pacore
{
public static class CreateInstanceOnStartLoader
{

View File

@@ -2,7 +2,7 @@
using System.Diagnostics;
using System;
namespace PashaBibko.Pacore.Shared.DevTools
namespace PashaBibko.Pacore.DevTools
{
public static class CodeProfiler
{

View File

@@ -1,4 +1,4 @@
using PashaBibko.Pacore.Shared.Attributes;
using PashaBibko.Pacore.Attributes;
using UnityEngine;
[CreateInstanceOnStart] public class TestMonoBehaviour : MonoBehaviour