19 lines
428 B
C#
19 lines
428 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Models
|
|
{
|
|
public class GridController
|
|
{
|
|
public int GridSize { get; set; }
|
|
public bool Visible { get; set; }
|
|
public bool Snap { get; set; }
|
|
public void ToggleGrid() { }
|
|
public void SetGridSize(int size) { }
|
|
public void ToggleSnap() { }
|
|
}
|
|
}
|