WindowsGame1.Sprite.getPos C# (CSharp) 메소드

getPos() 공개 메소드

public getPos ( ) : Vector2
리턴 Vector2
        public Vector2 getPos()
        {
            return pos;
        }

Usage Example

예제 #1
0
 public void getPosTest()
 {
     Sprite target = new Sprite(); // TODO: Initialize to an appropriate value
     Vector2 expected = new Vector2(); // TODO: Initialize to an appropriate value
     Vector2 actual;
     actual = target.getPos();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
All Usage Examples Of WindowsGame1.Sprite::getPos