Okay. So what I want to do... I'm trying to store a list of status effects as delegates in an array. The statuses will act like the statuses in the pokemon games.. (Stun makes you lose a turn etc).
I have this so far...
public class Statuses : Chara{
public static void para(){
this.health -= 10;
}
}
status[] statuses = new status[]{
new status(Statuses.para)
};
It's complaining about this not being a static property, I was wondering how I should proceed.
Thanks heaps.
statuses, what thestatustype is, or what theCharatype is. I would also strongly advise that you start following .NET naming conventions.