I am trying to put getters and setters into my inteface but I get the following error1053:
Accessor types must match.
Below is my Interface.
package com.objects{
public interface IKiller {
function get Systems():Array;
function set Systems(value:TargetSystem):void;
}
}
How are you suppose to put getters and setters into a interface. for as3