일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Brute Force
- 그래프
- Stored Procedure
- 스토어드 프로시저
- SQL
- binary search
- String
- two pointer
- DP
- 이진탐색
- Trie
- Two Points
- MYSQL
- Hash
- Dijkstra
- 다익스트라
- union find
Archives
- Today
- Total
codingfarm
시간 본문
쿨타임
1
2
3
4
5
6
7
8
|
float msBetweenFire, nextTime;
public void Fire() {
if(Time.time > nextTime){
nextTime = Time.time + msBetweenFire / 1000;
/* functions */
}
}
|
cs |
Comments