예제 #1
0
파일: LNOffset.cs 프로젝트: zx8326123/LGame
        public static LNOffset Action(float sx, float sy)
        {
            LNOffset off = new LNOffset();

            off._offset = new Vector2f(sx, sy);
            return(off);
        }
예제 #2
0
파일: LNOffset.cs 프로젝트: zx8326123/LGame
        public static LNOffset Action(Vector2f v)
        {
            LNOffset off = new LNOffset();

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