Skip to content

Commit

Permalink
remove Vector2 and add Float2 IWriter.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
alec1o authored Sep 4, 2023
1 parent 28fa98f commit 31a4afd
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/Core/Interface/IWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ internal interface IWriter
byte[] GetBytes();
List<byte> GetList();

void Write(byte a);
void Write(byte[] a);
void Write(short a);
void Write(ushort a);
void Write(int a);
void Write(uint a);
void Write(long a);
void Write(ulong a);
void Write(float a);
void Write(double a);
void Write(char a);
void Write(string a);
void Write(string a, Encoding b);
void Write(Vector2 a);
void Write(byte value);
void Write(byte[] value);
void Write(short value);
void Write(ushort value);
void Write(int value);
void Write(uint value);
void Write(long value);
void Write(ulong value);
void Write(float value);
void Write(double value);
void Write(char value);
void Write(string value);
void Write(string value1, Encoding value2);
void Write(Float2 value);

void Clear();
}
}
}

0 comments on commit 31a4afd

Please sign in to comment.