public bool HasWorldRightAll(Attributes right) { SetInstance(); return(NativeMethods.aw_has_world_right_all(right)); }
internal Color GetColor(Attributes red, Attributes green, Attributes blue) { return new Color((byte) GetInt(red), (byte) GetInt(green), (byte) GetInt(blue)); }
public bool HasWorldRight(int citizen, Attributes right) { SetInstance(); return(NativeMethods.aw_has_world_right(citizen, right)); }
internal void SetColor(Color value, Attributes red, Attributes green, Attributes blue) { SetInt(red, value.Red); SetInt(green, value.Green); SetInt(blue, value.Blue); }