main
1namespace gorilla.commons.utility
2{
3 public interface SubjectOf<State> where State : utility.State
4 {
5 void change_state_to(State new_state);
6 }
7}