포매팅

This commit is contained in:
2026-02-01 19:30:24 +09:00
parent 34507ca208
commit 6c2bb74df3
42 changed files with 8571 additions and 6960 deletions

View File

@@ -1,4 +1,4 @@
// Warning: Some assembly references could not be resolved automatically. This might lead to incorrect decompilation of some parts,
// Warning: Some assembly references could not be resolved automatically. This might lead to incorrect decompilation of some parts,
// for ex. property getter/setter access. To get optimal decompilation results, please manually add the missing references to the list of loaded assemblies.
// EdenAutoMorpherScript, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
// Eden.AutoMorpher.BvhNode
@@ -6,15 +6,15 @@ using UnityEngine;
public struct BvhNode
{
public Bounds bounds;
public Bounds bounds;
public int leftChild;
public int leftChild;
public int rightChild;
public int rightChild;
public int start;
public int start;
public int count;
public int count;
public bool isLeaf;
public bool isLeaf;
}