12 lines
265 B
C#
12 lines
265 B
C#
using UnityEngine;
|
|
|
|
namespace CreatureControl {
|
|
|
|
public class Mandible {
|
|
public Transform bone;
|
|
|
|
public Side side;
|
|
public bool isLeft => side == Side.Left;
|
|
public bool isRight => side == Side.Right;
|
|
}
|
|
} |