mirror of
https://github.com/amevarashi/RJW-Sexperience.git
synced 2024-08-14 23:54:08 +00:00
Refactored/optimized SexStatusWindow
This commit is contained in:
parent
e9ca084680
commit
cdc79acfa3
16 changed files with 1178 additions and 797 deletions
18
Source/RJWSexperience/SexHistory/UI/PartnerOrderMode.cs
Normal file
18
Source/RJWSexperience/SexHistory/UI/PartnerOrderMode.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
namespace RJWSexperience.SexHistory.UI
|
||||
{
|
||||
public enum PartnerOrderMode
|
||||
{
|
||||
Normal = 0,
|
||||
Recent = 1,
|
||||
Most = 2,
|
||||
Name = 3
|
||||
};
|
||||
|
||||
public static class PartnerOrderModeExtension
|
||||
{
|
||||
public static PartnerOrderMode Next(this PartnerOrderMode mode)
|
||||
{
|
||||
return (PartnerOrderMode)(((int)mode + 1) % 4);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue