27 lines
434 B
HTML
27 lines
434 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>My first web page</title>
|
|
|
|
<!-- This is a comment, by the way -->
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>List of useful Code Snippets for Forge Modding</h1>
|
|
|
|
<ol>
|
|
<li>Get a World Obj from the dimension id: World world = DimensionManager.getWorld(worldId);</li>
|
|
<li>To my friends</li>
|
|
<li>To my cat</li>
|
|
<li>To the little talking duck in my brain</li>
|
|
</ol>
|
|
|
|
</body>
|
|
|
|
</html>
|