Skip to content
Snippets Groups Projects
Interface.cs 287 B
Newer Older
using System;
using System.Collections.Generic;

public interface PowerLineObject
{
    PowerPointObject fromPoint;
    PowerPointObject toPoint;
    bool broken;
} 

public interface PowerPointObject
{
    List<PowerLineObject> lines { get; }
    bool powerIsON { get; set; }
    
}