15 lines
312 B
C#
15 lines
312 B
C#
//퇴근 후 발생할 수 있는 돌발 이벤트
|
|
public enum AfterWorkEvent
|
|
{
|
|
None,
|
|
TeamGathering,
|
|
OvertimeWork
|
|
}
|
|
|
|
public static class HousingConstants
|
|
{
|
|
//돌발 이벤트 확률 계산
|
|
public static int SUDDEN_EVENT_DENOMINATOR = 5;
|
|
public static int AFTER_WORK_DENOMINATOR = 4;
|
|
}
|