[진행중]프로젝트 3D_Idle
3일차 - 게임 시스템 구현 + 스탯 및 스탯 강화 구현
1. BigInteger를 활용한 데미지 시스템 1.1 BigInteger 확장 메서드 큰 숫자를한국어 단위로 표시하기 위한 확장 메서드구현(모바일환경이라 메모리와 성능의 트레이드 오프를 고려한 구현)public static class BigIntegerExtensions{ private static readonly (BigInteger value, string unit)[] units = { (1000000000000, "조"), (100000000, "억"), (10000, "만"), (1000, "천") }; public static string ToKoreanString(this BigInteger number) { ..
2025. 1. 24. 15:16