add libraries to the docs (will probably re-design later)
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 2m36s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 2m36s
This commit is contained in:
@ -1,11 +1,15 @@
|
||||
---
|
||||
title:
|
||||
title: Minecraft Utilities Documentation
|
||||
description: Welcome to the Minecraft Utilities documentation! Here you can find information on how to use the various features of the plugin.
|
||||
---
|
||||
|
||||
# Minecraft Utilities Documentation
|
||||
# Getting Started
|
||||
|
||||
Welcome to the Minecraft Utilities documentation! Here you can find information on how to use the various features of the plugin.
|
||||
This is still a work in progress, so please be patient as we continue to add more documentation.
|
||||
|
||||
## Getting Started
|
||||
## Libraries
|
||||
|
||||
This is still a work in progress, so please be patient as we continue to add more documentation.
|
||||
We offer a few different libraries for different languages to help you get started with the Minecraft Utilities plugin.
|
||||
|
||||
- [Java](/documentation/libraries/java)
|
||||
- [JavaScript](/documentation/libraries/javascript)
|
42
documentation/libraries/java.md
Normal file
42
documentation/libraries/java.md
Normal file
@ -0,0 +1,42 @@
|
||||
---
|
||||
title: Java Library
|
||||
description: The Java library for Minecraft Utilities is a simple way to interact with the plugin from using Java!
|
||||
---
|
||||
|
||||
# Java Library
|
||||
|
||||
This is the Java library for Minecraft Utilities.
|
||||
|
||||
## Installation
|
||||
|
||||
To use the Java library, you can add the following to your `pom.xml` file:
|
||||
|
||||
```xml
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>fascinated-repo-public</id>
|
||||
<name>Fascinated's Repository</name>
|
||||
<url>https://repo.fascinated.cc/public</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>xyz.mcutils</groupId>
|
||||
<artifactId>mcutils-java-library</artifactId>
|
||||
<version>1.1.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
This is a simple example of how to use the Java library to get a player's information.
|
||||
|
||||
```java
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
System.out.println(McUtilsAPI.getPlayer("Notch"));
|
||||
}
|
||||
}
|
||||
```
|
28
documentation/libraries/javascript.md
Normal file
28
documentation/libraries/javascript.md
Normal file
@ -0,0 +1,28 @@
|
||||
---
|
||||
title: Javascript Library
|
||||
description: The Javascript library for Minecraft Utilities is a simple way to interact with the plugin from using Javascript!
|
||||
---
|
||||
|
||||
# Javascript Library
|
||||
|
||||
This is the Javascript library for Minecraft Utilities.
|
||||
|
||||
## Installation
|
||||
|
||||
To use the Javascript library, you can run the following command:
|
||||
|
||||
```bash
|
||||
npm install mcutils-library
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
This is a simple example of how to use the Javascript library to get a player's information.
|
||||
|
||||
```javascript
|
||||
import { getPlayer, CachedPlayer } from "mcutils-library";
|
||||
|
||||
const cachedPlayer = await getPlayer(playerId);
|
||||
|
||||
console.log(player);
|
||||
```
|
Reference in New Issue
Block a user