| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- 드래곤 플라이트 모작
- 개발일지
- Photon Fusion
- AWS
- 유니티 UI
- Oculus
- 오브젝트 풀링
- Unity
- OVR
- meta
- 포트폴리오
- 드래곤 플라이트
- 길건너 친구들
- 팀프로젝트
- 가상현실
- 연습
- CGV
- 팀 프로젝트
- 멀티플레이
- Amazon S3
- 유니티 Json 데이터 연동
- VR
- 아마존
- 개발
- 유니티 GUI
- ChatGPT
- 유니티
- 오큘러스
- 모작
- meta xr
Archives
- Today
- Total
EasyCastleUNITY
디아블로 무기 God Butcher 본문

using System;
using System.Data.SqlTypes;
namespace HelloWorld
{
internal class Program
{
static void Main(string[] args)
{
string weaponName = "God Butcher";
string weaponType = "Sword";
float damage = 4.2f;
int minDamage =2;
int maxDamage =4;
float attackSpeed = 1.40f;
Console.WriteLine(weaponName);
Console.WriteLine(weaponType+"\n");
Console.WriteLine("{0}",damage);
Console.WriteLine("Damage Per Second\n");
Console.WriteLine("{0}-{1} Damage", minDamage,maxDamage);
Console.WriteLine("{0} Attacks per Second\n", attackSpeed);
}
}
}

'C#프로그래밍' 카테고리의 다른 글
| 디아블로 방어구 Veil of Steel (0) | 2023.07.19 |
|---|---|
| 디아블로 무기 Longsword (0) | 2023.07.19 |
| 디아블로 무기 King's Sword of Haste (0) | 2023.07.19 |
| 디아블로 무기 Marauder Axe (0) | 2023.07.19 |
| 디아블로 무기 Heavy Axe (0) | 2023.07.19 |