AssemblyInfo.cs 307 B

12345678910111213141516171819
  1. using System.Runtime.CompilerServices;
  2. using System;
  3. [assembly: InternalsVisibleTo("MeshBakerTests")]
  4. public class AssemblyInfo
  5. {
  6. // Start is called before the first frame update
  7. void Start()
  8. {
  9. }
  10. // Update is called once per frame
  11. void Update()
  12. {
  13. }
  14. }