-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathlanguages.php
61 lines (56 loc) · 2.56 KB
/
languages.php
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>Simple DirectMedia Layer - Language Bindings</title>
<?php require_once("include/meta.inc.php"); ?><?php $current_page = basename(__FILE__, '.php'); ?>
</head>
<body>
<div id="wrapper">
<?php require_once("include/header.inc.php"); ?>
<div id="left">
<?php require_once("include/sidebar.inc.php"); ?>
</div>
<div id="content"><h1>SDL 3.0 Language Bindings</h1>
<p class="intro">
The Simple DirectMedia Layer library has bindings to many different
programming languages. While SDL is written in C, it works well with
C++ and many people like to use it with various scripting languages
and special purpose programming languages.
</p>
<p>
SDL 2.0 language bindings are available <a href="languages-2.0.php">here</a>.
</p>
<div class="clearer"></div>
<div class="col left">
<blockquote>
<ul>
<li> <strong>
C#
</strong>
<br/>
SDL3-CS
<a href="https://github.com/flibitijibibo/SDL3-CS">https://github.com/flibitijibibo/SDL3-CS</a>
</li>
<li> <strong>
D
</strong>
<br/>
BindBC-SDL -
<a href="https://github.com/BindBC/bindbc-sdl">https://github.com/BindBC/bindbc-sdl</a>
</li>
<li> <strong>
Rust
</strong>
<br/>
sdl3 -
<a href="https://crates.io/crates/sdl3">https://crates.io/crates/sdl3</a>
</li>
</ul>
</blockquote>
</div>
</div>
<div class="clearer"></div>
</div>
<?php require_once("include/footer.inc.php"); ?>
</body>
</html>