-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
24 lines (23 loc) · 783 Bytes
/
header.php
File metadata and controls
24 lines (23 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
session_start();
?>
<html>
<head>
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.js"></script>
<script src="https://cdn.bootcss.com/jqueryui/1.12.1/jquery-ui.js"></script>
<script src="https://cdn.bootcss.com/font-awesome/5.10.0-12/js/all.min.js"></script>
<script src="js/functions.js"></script>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen"/>
</head>
<script>
$(document).ready(function () {
make_size();
mouse_control();
chose_one();
make_ui();
make_enemy();
player_unit_situation();
var time = setInterval(every_1s_function,1000);
var time_100ms = setInterval(every_100ms_function,100);
});
</script>