Initial commit

This commit is contained in:
2026-05-19 13:55:16 +01:00
commit f650f6da3c
99 changed files with 7189 additions and 0 deletions

View File

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