Exemplo n.º 1
0
        public static LNOffset Action(float sx, float sy)
        {
            LNOffset off = new LNOffset();

            off._offset = new Vector2f(sx, sy);
            return(off);
        }
Exemplo n.º 2
0
        public static LNOffset Action(Vector2f v)
        {
            LNOffset off = new LNOffset();

            off._offset = v;
            return(off);
        }
Exemplo n.º 3
0
		public static LNOffset Action(Vector2f v) {
			LNOffset off = new LNOffset();
			off._offset = v;
			return off;
		}
Exemplo n.º 4
0
		public static LNOffset Action(float sx, float sy) {
			LNOffset off = new LNOffset();
			off._offset = new Vector2f(sx, sy);
			return off;
		}