コード例 #1
0
ファイル: Sprite.cs プロジェクト: Azcryte/Untrusted
        //other things basic sprites need

        public Police(Texture2D text, Vector2 local, List <Vector2> lst)
            : base(text)
        {
            texture  = text;
            location = local;
            moves    = new Police_Movement(lst, this);
        }