| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 31 |
Tags
- Github
- reference counting
- Delete
- 벨만-포드
- Spin Lock
- 게임 서버 아키텍처
- 2-SAT
- localstorage
- Express.js
- 이분 탐색
- 자바스크립트
- DP
- Strongly Connected Component
- Binary Lifting
- 트라이
- 강한 연결 요소
- Prisma
- Behavior Design Pattern
- R 그래프
- 비트필드를 이용한 dp
- 비트마스킹
- 그래프 탐색
- ccw 알고리즘
- trie
- PROJECT
- Lock-free Stack
- SCC
- map
- JavaScript
- 최소 공통 조상
Archives
- Today
- Total
목록SharedPtr (1)
dh_0e
GameServer.cppclass Wraith{public: int _hp = 150; int _posX = 0; int _posY = 0;private:};class Missile{public: void SetTarget(Wraith* target) { _target = target; } void Update() { int posX = _target->_posX; int posY = _target->_posY; // TODO : 타겟을 쫓아감 }private: Wraith* _target = nullptr;};int main(){ Wraith* wraith = new Wraith(); Missile* missile = new Missile(); missile->SetTarget(wraith);..
C++/Game Server
2026. 3. 7. 16:34
