일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 유니티
- rendermonkey
- C++
- 셰이더
- 배열문제
- 가변배열
- 이득우
- 화살표 메서드
- 파이썬
- visualstudio2022
- premake5
- IMGUI
- 그림자 효과
- swipe
- 게임만들기
- 다중상속
- python
- 3차원배열
- 공부
- 언리얼
- 화살표 함수
- Unity
- 화살피하기
- 표창던지기
- 이득우언리얼
- 렌더몽키
- c++class
- c#
- uidesign
- 비주얼스튜디오
- Today
- Total
목록C#/수업 내용 (17)
신입 개발자 공부 과정

메서드 배열 하고 매개변수 Q1. 스타크래프트 부대지정 마린 3마리를 생성한다 각 마린의 이름은 고유하다 ex)홍길동, 임꺽정, 장길산 ... 마린 3마리를 부대지정한다 부대 지정한 마린 3마리의 이름을 출력한다 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace starcraft { class Program { static void Main(string[] args) { Marine marine1 = new Marine("홍길동"); Marine marine2 = new Marine("철수철수"); Marine marine3 = n..

Q1. item --- name --- Item item1 = new Item("장검") COnsole.WriteLine(item1.name); //장검 A1. Program using System; namespace _1229class { class Program { static void Main(string[] args) { Item item1 = new Item("장검"); Console.WriteLine(item1.name); //아이템 '장검' 생성 되었습니다. } } } Item using System; using System.Collections.Generic; using System.Text; namespace _1229class { class Item { public string name..

-다차원 배열과 가변배열 Jagged Array and Adjustable Array array of different element size ex) x x x x x x x x x creat instants of Adjustable Array= new int[3][]; Announce to Adjustable Array variables= int[][]arr = new int[3][]; arr null null null to use Adj Array, initilize elements first. ex) arr[0] = new int[3]; arr[1] = new int[2]; arr[2] = new int[4]; or arr[0] = new int[ ] {1,3,5}; //first column ..
알아야 할 부분: -리스트 -구조체 -컬렉션 -배열 -etc. 문제 벌쳐 vulture ------------------------- 위치 position 구조체로 위치를 만드세요 지뢰 3개 가지고있다 List mines 생명력 hp 공격력 damage ------------------------- 움직일 수 있다 Move 공격할 수 있다 Attack 터진다 Destroy 마인 설치 InstallMine ------------- Vulture vulture = new Vulture(" 벌쳐1"); vulture.Init(new Position(2,3)); vulture1.Move(new Position(0,0)) vulture1.InstallMine(); 마인이 (0,0)에 설치되었습니다. 마인:2/3 ..

문제: Unit ---------------- Attack Hit Marine ---------------- Attack : 공격 Hit : 피를 흘리면서 (빨간색) Zergling ---------------- Attack : 공격 Hit : 피를 흘리면서 (녹색) 프로그램 using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { Marine marine = new Marine("임꺽정"); Zergling zergling = new Zergling("홍길동"); marine.Attack(zergling); zergling.Attack(marine); } } } 유닛 using System;..