-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added easing/tweening, some bugfixes
- Loading branch information
1 parent
58d97b7
commit 6e43101
Showing
29 changed files
with
756 additions
and
302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Attribution (a) 2016 The Ruge Project (http://ruge.metasmug.com/) | ||
// Licensed under NWO-CS (see License.txt) | ||
|
||
using System; | ||
|
||
namespace MonoGame.Ruge.CardEngine { | ||
|
||
public enum DeckType { hex, playing, tarot } | ||
|
||
public enum HexSuit { beakers, chips, dna, planets } | ||
public enum HexRank { _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _A, _B, _C, _D, _E, _F } | ||
|
||
public enum PlayingSuit { clubs, hearts, diamonds, spades } | ||
public enum PlayingRank { _A, _2, _3, _4, _5, _6, _7, _8, _9, _10, _J, _Q, _K } | ||
|
||
public enum TarotSuit { major, coins, wands, swords, cups } | ||
public enum TarotRank { _ace, _2, _3, _4, _5, _6, _7, _8, _9, _10, _page, _knight, _queen, _king } | ||
public enum TarotRankMajor { _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21 } | ||
|
||
public enum CardColor { red, black, white, none } | ||
|
||
public class CardType { | ||
|
||
public Enum suit; | ||
public Enum rank; | ||
public DeckType deckType; | ||
|
||
public CardType(DeckType deckType) { | ||
this.deckType = deckType; | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.