Initial commit - Last War messaging system
This commit is contained in:
12
vendor/trafficcophp/bytebuffer/src/TrafficCophp/ByteBuffer/ReadableBuffer.php
vendored
Executable file
12
vendor/trafficcophp/bytebuffer/src/TrafficCophp/ByteBuffer/ReadableBuffer.php
vendored
Executable file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace TrafficCophp\ByteBuffer;
|
||||
|
||||
interface ReadableBuffer {
|
||||
public function read($start, $end);
|
||||
public function readInt8($offset);
|
||||
public function readInt16BE($offset);
|
||||
public function readInt16LE($offset);
|
||||
public function readInt32BE($offset);
|
||||
public function readInt32LE($offset);
|
||||
}
|
||||
Reference in New Issue
Block a user