Skip to content

Commit

Permalink
README: links and clarifications
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Mar 13, 2024
1 parent c4bd4cb commit ce376d9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# AMF I/O

AMF binary data format readers and writers for for [OpenFL](https://openfl.org/) and [Feathers UI](https://feathersui.com/), written in [Haxe](https://haxe.org/).
Readers and writers for [OpenFL](https://openfl.org/) targeting the [Action Message Format (AMF)](https://en.wikipedia.org/wiki/Action_Message_Format) and [Flash Local Shared Object (LSO)](https://en.wikipedia.org/wiki/Local_shared_object) binary data formats. Written in [Haxe](https://haxe.org/).

Contains the following types for AMF input and output.

- `AMFReader`: Reads AMF0 or AMF3 objects from a `ByteArray`
- `AMFWriter`: Writes AMF0 or AMF3 objects to a `ByteArray`
- `SolReader`: Reads Flash Local Shared Object data from a `ByteArray`
- `SolWriter`: Writes Flash Local Shared Object data to a `ByteArray`
- `AMFEcmaArray`: An associative array that may contain both integer and string keys. Like a combination of the `Array` type and an anonymous structure.
- `AMFDictionary`: Similar to the `Map` type, but keys are not restricted to a single type.
- `AMFReader`: Reads AMF0 or AMF3 objects from a [`ByteArray`](https://api.openfl.org/openfl/utils/ByteArray.html)
- `AMFWriter`: Writes AMF0 or AMF3 objects to a [`ByteArray`](https://api.openfl.org/openfl/utils/ByteArray.html)
- `SolReader`: Reads Flash Local Shared Object data from a [`ByteArray`](https://api.openfl.org/openfl/utils/ByteArray.html)
- `SolWriter`: Writes Flash Local Shared Object data to a [`ByteArray`](https://api.openfl.org/openfl/utils/ByteArray.html)
- `AMFEcmaArray`: An associative array that may contain both integer and string keys. Like a combination of an [array](https://haxe.org/manual/std-Array.html) and an [anonymous structure](https://haxe.org/manual/types-anonymous-structure.html).
- `AMFDictionary`: Similar to the [`Map` type](https://haxe.org/manual/std-Map.html), but keys are not restricted to a single type.

## Minimum Requirements

Expand Down

0 comments on commit ce376d9

Please sign in to comment.