Example #1
0
        public static LNOffset Action(float sx, float sy)
        {
            LNOffset off = new LNOffset();

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

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