mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2026-03-23 07:16:17 +00:00
Conditions are coming ;)
This commit is contained in:
parent
6882a31d12
commit
2c54ed4a96
4 changed files with 377 additions and 21 deletions
|
|
@ -60,4 +60,9 @@
|
|||
<EmbeddedResource Include="..\..\Data\spells_vo.md" Link="Data\spells_vo.md" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="..\..\Data\conditions_hd.md" Link="Data\conditions_hd.md" />
|
||||
<EmbeddedResource Include="..\..\Data\conditions_vo.md" Link="Data\conditions_vo.md" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
@ -9,30 +9,15 @@ using Xamarin.Forms;
|
|||
|
||||
namespace AideDeJeu.ViewModels
|
||||
{
|
||||
public enum ItemType
|
||||
{
|
||||
Spell,
|
||||
Monster,
|
||||
}
|
||||
|
||||
public enum ItemSource
|
||||
{
|
||||
VF,
|
||||
VO,
|
||||
HD
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum ItemSourceType
|
||||
{
|
||||
Spell = 0x01,
|
||||
Monster = 0x10,
|
||||
VO = 0x1100,
|
||||
HD = 0x1000,
|
||||
SpellVO = Spell | VO,
|
||||
SpellHD = Spell | HD,
|
||||
MonsterVO = Monster | VO,
|
||||
MonsterHD = Monster | HD,
|
||||
SpellVO,
|
||||
SpellHD,
|
||||
MonsterVO,
|
||||
MonsterHD,
|
||||
ConditionVO,
|
||||
ConditionHD,
|
||||
}
|
||||
|
||||
public class MainViewModel : BaseViewModel
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue