summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/Physics/BoxShape.cs
blob: b5a4e7b09e106d0128f212e4785c63f29a77b44b (plain)
1
2
3
4
5
6
7
8
9
10
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

[RequireComponent(typeof(TopDownTransform))]
public class BoxShape : ShapeBase
{


}