Readd missing import files

This commit is contained in:
Lucien
2026-05-07 10:14:44 +02:00
parent ecb44e63d8
commit cd608d5796
810 changed files with 263144 additions and 1 deletions
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
namespace Wing.Gizmos
{
public interface ISnap
{
bool Enable { get; set; }
float Precision { get; set; }
bool Snap(Vector3 inVal, ref Vector3 outVal, bool force = false);
}
}